Python Selenium WebElements和.text的问题

时间:2013-06-17 20:52:14

标签: python selenium

我正在Selenium中编写一个文本,该文本获取表格的最左列,并验证其单元格中的字符串是否与我所拥有的日期列表相匹配。我的代码看起来像这样:

dates = ["20130501", "20130502", "20130506", "20130507", "20130508", "20130509", "20130510", "20130513", "20130514", "20130515"]
mytable = self.driver.find_element(By.ID, "mytable")
datecells = mytable.find_elements(By.CSS_SELECTOR, "tbody td:first-child")
for date, cell in zip(dates, datecells):
    print "'{0}', '{1}'".format(date, cell.text) # For debugging
    #self.assertEqual(date, cell.text)

当断言被注释掉时,我将其打印出来:

'20130501', ''
"20130502', ''
'20130506', ''
'20130507', ''
'20130508', ''
'20130509', ''
'20130510', ''
'20130513', ''
'20130514', ''
'20130515', ''

奇怪的是,如果我在打印上放置断点(使用MyDeclipse和PyDev),并在输出之前查看PyDev Debug的变量选项卡中的单元格,我可以看到正确的文本,并且代码输出为预期:

'20130501', '20130501'
'20130502', '20130502'
'20130506', '20130506'
'20130507', '20130507'
'20130508', '20130508'
'20130509', '20130509'
'20130510', '20130510'
'20130513', '20130513'
'20130514', '20130514'
'20130515', '20130515'

WebElement .text属性是否存在一些奇怪的观察者效果,它只能由此调试器正确评估,或者是否有一些条件我应该等待从单元格中获取正确的值而无需步骤通过?

1 个答案:

答案 0 :(得分:4)

在使用PhantomJS的WebDriver进行一些测试后,我能够明确地发现这是Firefox的WebDriver的一个问题,并且发现了之前提出的问题:WebElement getText() is an empty string in Firefox if element is not physically visible on the screen

因此将for循环更改为

for date, cell in zip(dates, datecells):
    self.driver.execute_script("arguments[0].scrollIntoView(true);", cell)
    print "'{0}', '{1}'".format(date, cell.text)
    self.assertEqual(date, cell.text)

为了在获取文本之前将每个单元格滚动到视图中,我得到了预期的输出。