本文整理匯總了Java中org.openqa.selenium.phantomjs.PhantomJSDriverService.start方法的典型用法代碼示例。如果您正苦於以下問題:Java PhantomJSDriverService.start方法的具體用法?Java PhantomJSDriverService.start怎麽用?Java PhantomJSDriverService.start使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.openqa.selenium.phantomjs.PhantomJSDriverService
的用法示例。
在下文中一共展示了PhantomJSDriverService.start方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: startAndStop
import org.openqa.selenium.phantomjs.PhantomJSDriverService; //導入方法依賴的package包/類
@Test
public void startAndStop() throws IOException {
PhantomJSDriverService driverService = factory.createService();
driverService.start();
try {
WebDriver webDriver = factory.createWebDriver(driverService);
String url = "http://localhost:" + httpServer.getAddress().getPort() + "/webdriverTest";
webDriver.get(url);
String currentUrl = webDriver.getCurrentUrl();
assertThat(currentUrl).isEqualTo(url);
} finally {
driverService.stop();
}
}
示例2: testProxyHTTP
import org.openqa.selenium.phantomjs.PhantomJSDriverService; //導入方法依賴的package包/類
@Ignore
@Test
public void testProxyHTTP() throws IOException {
String[] arguments = factory.createServiceArgumentsBuilder()
.httpProxyServer("http://localhost:" + proxyPortProber.getPort())
.build();
PhantomJSDriverService service = factory.createService(arguments);
service.start();
try {
WebDriver webDriver = factory.createWebDriver(service);
webDriver.get("http://www.lgohlke.de");
assertThat(webDriver.getPageSource().length()).isBetween(24000, 26000);
} finally {
service.stop();
}
}
示例3: testProxyHTTPS
import org.openqa.selenium.phantomjs.PhantomJSDriverService; //導入方法依賴的package包/類
@Ignore
@Test
public void testProxyHTTPS() throws IOException {
String[] arguments = factory.createServiceArgumentsBuilder()
.httpProxyServer("http://localhost:" + proxyPortProber.getPort())
.build();
PhantomJSDriverService service = factory.createService(arguments);
service.start();
try {
WebDriver webDriver = factory.createWebDriver(service);
webDriver.get("https://www.google.de");
assertThat(webDriver.getPageSource().length()).isBetween(100000, 110000);
} finally {
service.stop();
}
}