java - Selenium 中的 pageLoadTimeout 不起作用

标签 java selenium selenium-webdriver webdriver pageloadtimeout

我在 Java 中使用 selenium 使用以下代码。我添加了 4 秒的 pageLoadTimeout,但是,驱动程序继续等待直到加载完整页面。有帮助吗?

System.setProperty("webdriver.gecko.driver", System.getProperty("user.home") + "\\Desktop\\geckodriver.exe");

        FirefoxBinary b = new FirefoxBinary(new File(System.getProperty("user.home") + "\\desktop\\Mozilla Firefox\\firefox.exe"));
        FirefoxOptions options = new FirefoxOptions().setBinary(b);
        driver = new FirefoxDriver(options);
        //driver.manage().timeouts().implicitlyWait(1, TimeUnit.SECONDS);
        driver.manage().timeouts().pageLoadTimeout(4, TimeUnit.SECONDS);


        driver.get("https://www.booking.com/hotel/in/the-taj-mahal-palace-tower.html?label=gen173nr-1FCAEoggJCAlhYSDNiBW5vcmVmaGyIAQGYATG4AQbIAQzYAQHoAQH4AQKSAgF5qAID;sid=338ad58d8e83c71e6aa78c67a2996616;dest_id=-2092174;dest_type=city;dist=0;group_adults=2;hip_dst=1;hpos=1;room1=A%2CA;sb_price_type=total;srfid=ccd41231d2f37b82d695970f081412152a59586aX1;srpvid=c71751e539ea01ce;type=total;ucfs=1&#hotelTmpl");
List<WebElement> facilitySectionList = driver.findElements(By.className("facilitiesChecklistSection"));

最佳答案

解决你的 pageLoadTimeout 问题是提高你的 Selenium 版本到 v3.5.0。这是有效的代码块和结果 org.openqa.selenium.TimeoutException: Timeout loading page after 2000ms 用最少的行编写您自己的代码:

  • 代码块:

    public class Q45591282_pageloadtimeout 
    {
        public static void main(String[] args) 
        {
              System.setProperty("webdriver.gecko.driver", "C:\\Utility\\BrowserDrivers\\geckodriver.exe");
              WebDriver driver=new FirefoxDriver();
              driver.manage().timeouts().pageLoadTimeout(2, TimeUnit.SECONDS);
              driver.get("https://www.booking.com/hotel/in/the-taj-mahal-palace-tower.html?label=gen173nr-1FCAEoggJCAlhYSDNiBW5vcmVmaGyIAQGYATG4AQbIAQzYAQHoAQH4AQKSAgF5qAID;sid=338ad58d8e83c71e6aa78c67a2996616;dest_id=-2092174;dest_type=city;dist=0;group_adults=2;hip_dst=1;hpos=1;room1=A%2CA;sb_price_type=total;srfid=ccd41231d2f37b82d695970f081412152a59586aX1;srpvid=c71751e539ea01ce;type=total;ucfs=1&#hotelTmpl");
        }
    }
    
  • 控制台输出:

    1502530864350   geckodriver INFO    geckodriver 0.18.0
    1502530864365   geckodriver INFO    Listening on 127.0.0.1:29688
    1502530865042   geckodriver::marionette INFO    Starting browser C:\Program Files\Mozilla Firefox\firefox.exe with args ["-marionette"]
    1502530903170   Marionette  INFO    Listening on port 1900
    Aug 12, 2017 3:11:44 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    INFO: Detected dialect: W3C
    Exception in thread "main" org.openqa.selenium.TimeoutException: Timeout loading page after 2000ms
    Build info: version: '3.5.0', revision: '8def36e068', time: '2017-08-10T23:00:22.093Z'
    System info: host: 'ATECHM-03', ip: '192.168.1.48', os.name: 'Windows 8', os.arch: 'amd64', os.version: '6.2', java.version: '1.8.0_77'
    Driver info: org.openqa.selenium.firefox.FirefoxDriver
    Capabilities [{moz:profile=C:\Users\ATECHM~1\AppData\Local\Temp\rust_mozprofile.LSsvaNqlDbxE, rotatable=false, timeouts={implicit=0.0, pageLoad=300000.0, script=30000.0}, pageLoadStrategy=normal, platform=ANY, specificationLevel=0.0, moz:accessibilityChecks=false, acceptInsecureCerts=false, browserVersion=53.0, platformVersion=6.2, moz:processID=3652.0, browserName=firefox, javascriptEnabled=true, platformName=windows_nt}]
    Session ID: 8b841376-00fd-4359-8cae-a68912b23706
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.openqa.selenium.remote.http.W3CHttpResponseCodec.createException(W3CHttpResponseCodec.java:185)
        at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:120)
        at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:49)
        at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:164)
        at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:82)
        at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:641)
        at org.openqa.selenium.remote.RemoteWebDriver.get(RemoteWebDriver.java:368)
        at demo.Q45591282_pageloadtimeout.main(Q45591282_pageloadtimeout.java:20)
    

捕获 WebDriverException

  • 代码块:

    public class pageLoadTimeout 
    {
        public static void main(String[] args) 
        {
              System.setProperty("webdriver.chrome.driver", "C:\\Utility\\BrowserDrivers\\chromedriver.exe");
              WebDriver driver = new ChromeDriver();
              driver.manage().timeouts().pageLoadTimeout(2, TimeUnit.SECONDS);
              try{
                  driver.get("https://www.booking.com/hotel/in/the-taj-mahal-palace-tower.html?label=gen173nr-1FCAEoggJCAlhYSDNiBW5vcmVmaGyIAQGYATG4AQbIAQzYAQHoAQH4AQKSAgF5qAID;sid=338ad58d8e83c71e6aa78c67a2996616;dest_id=-2092174;dest_type=city;dist=0;group_adults=2;hip_dst=1;hpos=1;room1=A%2CA;sb_price_type=total;srfid=ccd41231d2f37b82d695970f081412152a59586aX1;srpvid=c71751e539ea01ce;type=total;ucfs=1&#hotelTmpl");
              }catch(WebDriverException e){
                  System.out.println("WebDriverException occured");
              }
              driver.quit();
        }
    }
    
  • 控制台输出:

    Only local connections are allowed.
    Please protect ports used by ChromeDriver and related test frameworks to prevent access by malicious code.
    Jul 17, 2019 8:53:26 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    INFO: Detected dialect: W3C
    [1563377008.449][SEVERE]: Timed out receiving message from renderer: 1.999
    [1563377008.450][SEVERE]: Timed out receiving message from renderer: -0.001
    [1563377008.461][SEVERE]: Timed out receiving message from renderer: -0.012
    [1563377010.466][SEVERE]: Timed out receiving message from renderer: 1.998
    [1563377010.467][SEVERE]: Timed out receiving message from renderer: -0.001
    [1563377010.476][SEVERE]: Timed out receiving message from renderer: -0.010
    WebDriverException occured
    

关于java - Selenium 中的 pageLoadTimeout 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45591282/

相关文章:

Jenkins 上的 Selenium 正在跳过所有测试

java - 在 Selenium 中,使用显式等待时是否需要禁用隐式等待?

java - 有人可以分享可以在 options.addArguments() 中传递的完整参数列表吗?

python-3.x - clear()不会使用selenium和python和firefox清除文本框

java - Logback RollingFileAppender 不记录 Hibernate 消息

java - 调试在启动时运行的应用程序

java - 使用 Java 通过 FTP 将所有目录复制到服务器

java - 已签名的 Java Applet 在连接到 Web 服务时抛出安全异常

Python selenium webdriver 测试在 Windows XP 上大批量运行时导致 "serious error"

selenium - org.openqa.selenium.SessionNotCreatedException : Unable to find a matching set of capabilities while initiating Firefox v37 through Selenium v3. 11.0