當前位置: 首頁>>代碼示例>>Java>>正文


Java PhantomJSDriverService.start方法代碼示例

本文整理匯總了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();
    }
}
 
開發者ID:lkwg82,項目名稱:de.lgohlke.selenium-webdriver,代碼行數:17,代碼來源:PhantomJSDriverServiceFactoryIT.java

示例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();
    }
}
 
開發者ID:lkwg82,項目名稱:de.lgohlke.selenium-webdriver,代碼行數:18,代碼來源:PhantomJSDriverServiceFactoryIT.java

示例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();
    }
}
 
開發者ID:lkwg82,項目名稱:de.lgohlke.selenium-webdriver,代碼行數:18,代碼來源:PhantomJSDriverServiceFactoryIT.java


注:本文中的org.openqa.selenium.phantomjs.PhantomJSDriverService.start方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。