提问者:小点点

SeleniumIEWebDriver仅在调试时工作


我正在使用JavaGradle,Selenium 3.8.0和IEWebDriver 3.8.0。

Chrome和Firefox工作正常,但是IE抛出一个org. openqa.selenium.TimeoutException:预期条件失败异常,尽管IE也可以正常工作,如果我一步一步调试我的源代码。

因此,我调试了很长时间才发现这个问题,我注意到IE失去了WebDriver和源代码之间的连接,每当调用webDrive. get(…)时,它看起来像这样:

driver.get(url);
waitForPageLoaded(driver);

因此,我假设有一些时间问题,但我已经尝试处理这个问题:

public void waitForPageLoaded(WebDriver driver) {
        logger.debug("Wait until the page was loaded.");
        // IE seems to fail here.
        new WebDriverWait(driver, SeleniumConfigurator.TIME_OUT)
                .until(d -> ((JavascriptExecutor)d).executeScript("return document.readyState")
                        .equals("complete"));
    }

然后我注意到IE需要一些更多的配置设置,但我不允许设置其中一些:IT限制-

但是,为什么它在调试时工作正常?

这是我的IE设置:

case IE:
                path = "../../../../../../resources/driver/win/IEDriverServer_32_v3-8-0.exe";
                url = getClass().getResource(path);
                if (url == null) {
                    logger.error("Could not find the Internet Explorer web driver binary at " + path + " ." +
                            "All test for this browser will be ignored.");
                    currentBrowserType = BrowserType.UNDEFINED;
                    break;
                }
                try {
                    System.setProperty("webdriver.ie.driver", Paths.get(url.toURI()).toFile().getAbsolutePath());
                } catch (URISyntaxException e) {
                    e.printStackTrace();
                }
                // https://sqa.stackexchange.com/questions/13077/unable-to-run-selenium-webdriver-script-in-ie11
                InternetExplorerOptions optionsIE = new InternetExplorerOptions();
                optionsIE.setCapability(InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
                optionsIE.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
                optionsIE.withAttachTimeout(SeleniumConfigurator.TIME_OUT, TimeUnit.SECONDS);

                //optionsIE.setCapability(InternetExplorerDriver.REQUIRE_WINDOW_FOCUS, true);


                webDriver = new InternetExplorerDriver(optionsIE);
                currentBrowserType = BrowserType.IE;
                break;

我不知道这里出了什么问题…

第一个测试工作正常,之后出现超时异常(看看评论):

@Test
    public void test_Contact() {
        Init();

        util.logTestStart("Test contact on index page..");
        String xPath = "//*[@id='contact-link']/a";
        WebElement element = webDriver.findElement(By.xpath(xPath));
        Assert.assertEquals(element.getAttribute("href"), "mailto:what@ever.com");
    }


    @Test
    public void test_LegalInformation() {
        Init();

        util.logTestStart("Test legal information on index page..");
        String xPath = "//*[@id='link-highlighted']/a";
        util.aTagClickByXPath(webDriver, xPath);

        Assert.assertEquals(webDriver.getCurrentUrl(), "http://whatever.com/");
    }


private void Init() {
        if (configurator == null) {
            configurator = SeleniumConfigurator.getInstance();
        }

        if (webDriver != configurator.getWebDriver()) {
            webDriver = configurator.getWebDriver();
        }

        if (util == null) {
            util = new SeleniumTestUtil();
        }

        // Open localhost as default
        util.goTo(webDriver, "http://localhost:8080/de/index");
    }

public void aTagClickByXPath(WebDriver driver, String xPath) {
        logger.debug("Performing a click on an a-Tag, xPath: " + xPath);
        WebElement element = driver.findElement(By.xpath(xPath));
        element.click(); // First click works, second one fails, cause of Timeout Exception
        waitForPageLoaded(driver);
    }

有人有提示吗?

编辑:

org. openqa.selenium.NoSuchWindowException:暂时无法让浏览器被抛出。超时异常不再出现。我什么也没改变。

编辑2:

更多信息:

节点:

<div class="col-xs-12" id="link-container">
                <div id="bike-link" class="pull-right">
                    <a href="http://whatever.com/?lang=D">
                        whatever
                        <i class="fa fa-chevron-right" aria-hidden="true"></i>
                    </a>
                </div>
                <div id="link-highlighted" class="pull-right">
                    <a href="http://whatever2.com/"> <!-- this one -->
                         Rechtliche Hinweise
                        <i class="fa fa-chevron-right" aria-hidden="true"></i>
                    </a>
                </div>
                <div id="contact-link" class="pull-right">
                    <a href="mailto:what@ever.com">
                        Kontakt
                        <i class="fa fa-chevron-right" aria-hidden="true"></i>
                    </a>
                </div>
            </div>

超时定义:

public static final int TIME_OUT = 15;

共1个答案

匿名用户

有几个事实,你可能必须考虑如下:

>

  • 首先:

    public void waitForPageLoaded(WebDriver driver)
    

    在我看来是纯粹的开销。基本上不需要在WebDriver等之上编写单独的包装函数。

    根据Selenium v3.8.1中WebDriver等待的当前实现,构造函数如下:

    WebDriverWait(WebDriver driver, Clock clock, Sleeper sleeper, long timeOutInSeconds, long sleepTimeOut) 
    WebDriverWait(WebDriver driver, long timeOutInSeconds)
    WebDriverWait(WebDriver driver, long timeOutInSeconds, long sleepInMillis)
    

    目前还不清楚您是如何实现的:

    WebDriverWait(driver, SeleniumConfigurator.TIME_OUT)
    

    这些参数看起来容易出错。

    再说一遍直到条件

    d -> ((JavascriptExecutor)d).executeScript("return document.readyState").equals("complete")
    

    是一种开销,因为客户端(即Web浏览器)永远不会将控件返回给WebDriver实例,直到并且除非'docent. readyState'等于“完成”。一旦满足此条件,Selenium就会执行下一行代码。因此函数

    Boolean org.openqa.selenium.support.ui.FluentWait.until(Function<? super WebDriver, Boolean> arg0)
    

    不会有影响。

    值得一提的是,尽管客户端(即Web浏览器)可以在实现等于完成的的'Document. readyState'后将控件返回给WebDriver实例,但它并不能保证新的超文本标记语言DOM上的所有WebElements都是可见的、可交互的和可点击的。

    最后,为了解决您的主要问题,我需要澄清节点xPath = "//*[@id='link突出显示']/a"以确保调用click()是否会打开一个新选项卡或url被重定向。我没有看到你处理这两种情况。

    >

  • 在处理InternetExplorer时,请记住InternetExplorerDriver在真正的浏览器中运行并支持Javascript。
  • 通过以下方式设置浏览器焦点:

    capabilities.setCapability("requireWindowFocus", true);
    

    如果点击()打开一个新窗口,通过window_handles切换()

    您可以在以下链接中找到一些相关的详细讨论:

    • 我们是否有任何通用函数来检查页面是否已在Selenium中完全加载
    • Selenium如何管理等待页面加载?