1

首先是规范,我正在用 java 编写 Selenium Webdriver 测试,用于主要用 ExtJS 编写并在 firefox 浏览器 v14 上运行的应用程序。有趣的是,Selenium 可以找到我想要单击的元素,但单击似乎没有执行,或者如果它正在执行,则不会发生所需的结果(出现弹出窗口)。我还在 Selenium IDE 中验证了我正在寻找的元素(我通过 Xpath 找到的 span 元素)存在,但是在 Selenium IDE 中我遇到了无法单击它的相同问题。

如果我手动单击按钮,则会出现弹出窗口,询问我要上传的文件。我还尝试了其他元素,例如跨度的父“按钮”元素和父“em”元素以及父“div”元素,但都没有运气。

让我感到沮丧的是,我已经为这个应用程序编写了几个星期的 Selenium 测试,并且总是能够使用这种方法来单击按钮,而对于这个特定的按钮,它不再起作用。

        WebElement uploadButton = driver.findElement(By.xpath("//span[contains(text(), 'Upload Popup')]"));
    uploadButton.click();

编辑1:认为按钮本身的代码可能会有所帮助

<button id="filefield-1158-buttonEl-btnEl" class="x-btn-center" autocomplete="off" role="button" hidefocus="true" type="button" style="background-color: transparent;">

注意id是ExtJS创建的动态id

4

2 回答 2

1

这可能是因为很多原因。我建议您在测试运行时进行调试。

可以在 Selenium Firefox 实例中安装 FireBug:

File file = new File("firebug-1.8.1.xpi");
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.addExtension(file);
firefoxProfile.setPreference("extensions.firebug.currentVersion", "1.8.1"); // Avoid startup screen

WebDriver driver = new FirefoxDriver(firefoxProfile);

我假设您可以通过 JUnit(在 Eclipse 之类的 IDE 中)启动您的测试。在调试模式下启动测试并在单击按钮之前设置断点。然后通过 FireBug 检查 html 代码。它可能会给你一个开始。

另一种可能性是通过 css 类 (By.className) 或选择器 (By.cssSelector) 选择按钮:

WebElement uploadButton = driver.findElement(By.className("x-btn-center"));
uploadButton.click();

如果页面上有多个按钮,您将不得不使用

List<WebElement> buttons = driver.findElements(By.className("x-btn-center"));
WebElement uploadButton = buttons.get(index);
uploadButton.click();
于 2012-12-21T18:41:21.380 回答
0

试试这个:

     driver.findElements(By.xpath("//button[@class='x-btn-center']").click()

或者

     driver.findElements(By.xpath("//*[@class='x-btn-center']").click()
于 2012-12-23T10:36:15.443 回答