Package com.crawljax.core.largetests

Source Code of com.crawljax.core.largetests.LargePhantomJSTest

package com.crawljax.core.largetests;

import com.crawljax.browser.EmbeddedBrowser.BrowserType;
import com.crawljax.core.configuration.BrowserConfiguration;
import com.crawljax.test.BrowserTest;
import org.junit.experimental.categories.Category;

@Category(BrowserTest.class)
public class LargePhantomJSTest extends LargeTestBase {

  @Override
  BrowserConfiguration getBrowserConfiguration() {
    return new BrowserConfiguration(BrowserType.PHANTOMJS, 1);
  }

  @Override
  long getTimeOutAfterReloadUrl() {
    return 200;
  }

  @Override
  long getTimeOutAfterEvent() {
    return 200;
  }

}
TOP

Related Classes of com.crawljax.core.largetests.LargePhantomJSTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.