3

我过去使用过 selenium RC,但我是 webdriver 的新手。我的应用程序中有三个链接。通知、消息和连接。单击通知时,将显示通知下拉框。单击消息时,会显示消息下拉框,单击连接时,会显示连接下拉框。在脚本中,我单击通知链接,等待通知下拉框,然后断言通知下拉框。消息和连接的顺序相同。通知序列正常工作。在消息中,它单击消息链接,然后挂在等待消息下拉框链接上。我知道这一点,因为我在每一行之后都放了 print 命令。这是我的代码:

 driver.findElement(By.xpath("//a[@id='notifications-page-button']")).sendKeys("\n");
wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//div[@id='notifications-dropdown-list']//li//div[@class='message']")));
Assert.assertTrue(isElementPresent(By.xpath("//div[@id='notifications-dropdown-list']//li//div[@class='message']")), "Notifications drop box was not displayed");

wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//a[@id='messages-page-button']")));

driver.findElement(By.xpath("//a[@id='messages-page-button']")).sendKeys("\n");
wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//div[@class='sf_messages_list dropdown']//li//div[@class='message']"))); //This is the line where the script hangs. If I remove this line and the next line and continue with just the click commands, they work. But when I have this line and the next, the remaining click commands are not executed

Assert.assertTrue(isElementPresent(By.xpath("//div[@class='sf_messages_list dropdown']//li//div[@class='message']")), "Messages drop box was not displayed");

wait.until(ExpectedConditions.presenceOfElementLocated(By.id("connections-page-button"))); 
driver.findElement(By.id("connections-page-button")).click()

下面是消息部分的 HTML:

<li class="icon mm open">
<a id="messages-page-button" class="mm" href="#">
<span class="icon"></span>
<span class="badge hidden_elem">
<strong>
<em>0</em>
</strong>
</span>
</a>
<div class="dropdown-holder">
<div class="sf_messages_list dropdown" data-eventprefix="mainmenu_messages">
<div class="tb-dropdown-header">Messages</div>
<div class="tb-dropdown-body" data-url="/messages/dropdown">
<div class="document-title" style="display: none; !important"> - Dropdown Messages</div>
<div id="messages_list_view_76345" class="message-threads-listview">
<ul>
<div class="no_items hidden_elem">
</div>
</div>
<div class="tb-dropdown-footer" style="display: block;">
</div>
<span class="shadow-hide"></span>
</div>
</li>

下面是通知部分的 HTML:

<li class="icon mm">
<a id="notifications-page-button" class="mm" href="#">
<span class="icon"></span>
<span class="badge hidden_elem">
<strong>
<em>0</em>
</strong>
</span>
</a>
<div class="dropdown-holder">
<div id="notifications-dropdown-list" class="sf_notifications_list dropdown" data-eventprefix="mainmenu_notifications">
<div class="tb-dropdown-header">Notifications</div>
<div class="tb-dropdown-body" data-url="/notifications/dropdown"></div>
<div class="tb-dropdown-footer">
<a class="view_all" href="/notifications/view">View All Notifications</a>
</div>
</div>
<span class="shadow-hide"></span>
</div>
</li>

上面的代码适用于 IE。所以看起来问题不在于它无法找到元素。我正在使用 Selenium 2.25.0。我尝试过各种版本的 FF,包括 3.6、7、11、13、15 和 16。但它们都不起作用。此外,脚本只是挂起。它甚至不会在 Eclipse 中引发错误。我曾经让我的脚本运行了大约 11 个小时,但仍然没有错误。

如果您需要更多信息来帮助我解决此问题,请告诉我。

谢谢!

4

2 回答 2

1

在以前版本的 Selenium Webdriver 中,我也遇到过类似的情况。我也一无所知,发生在我身上的事情。最终,更新到最新版本的 Selenium 对我很有帮助,但因为 2.25.0 是最新的,我至少会向您展示我使用的解决方法,直到更新解决它

每当我需要单击一个按钮时,什么都没有发生(至于你)。所以解决方法是,当单击按钮时,我也会向Enter它发送关键事件。

更加具体:

 WebElement buttonWhereClickingDoesNotWork = driver.findElement(By.id("messages-page-button");
buttonWhereClickingDoesNotWork.click();
buttonWhereClickingDoesNotWork.sendKeys(Keys.ENTER);

是的,它的解决方法。是的,它不好看。是的,它确实帮助了我。

而且:不,我不知道这个的根本原因,因为 Selenium 的更新在我的情况下帮助了我......

于 2012-10-23T14:38:01.483 回答
0

这似乎与 Facebook 登录有某种联系。您是否在窗口句柄之间正确切换?还有什么是你的隐式超时,默认设置为 30 秒,所以我不确定你的脚本是否可以运行 11 小时而不会出错。

你能试试这些吗

1)我className("message")不存在,你的脚本实际上是卡在那个步骤而不是之后的步骤。其中涉及点击。

driver.findElement(By.id("notifications-page-button")).click();
wait.until(driver.findElement(By.id("messages-page-button")));#<<-- Changed the element to wait for

//The code works untill here. But on the next command that clicks messages link, it hangs
driver.findElement(By.id("messages-page-button")).click();
wait.until(ExpectedConditions.presenceOfElementLocated(By.className(("username"))));

2)删除等待元素

driver.findElement(By.id("notifications-page-button")).click();
#removed this wait for element

//The code works untill here. But on the next command that clicks messages link, it hangs
driver.findElement(By.id("messages-page-button")).click();
wait.until(ExpectedConditions.presenceOfElementLocated(By.className(("username"))));

更新


请试试这个...

driver.findElement(By.id("notifications-page-button")).click();
wait.until(ExpectedConditions.presenceOfElementLocated(By.className(("message"))));

//The code works untill here. But on the next command that clicks messages link, it hangs
driver.findElement(By.id("messages-page-button")).click();
wait.until(driver.findElement(By.id("connections-page-button"))); # changed it to wait for the element that you will next work with

driver.findElement(By.id("connections-page-button")).click();
wait.until(ExpectedConditions.presenceOfElementLocated(By.className(("connections-listview"))));

此外,如果您提供 Web 元素的 HTML 片段,但您不确定定位器,我们可以帮助您找出答案。

于 2012-10-23T14:36:16.537 回答