我正在使用Selenium Webdriver来检查这个特定段落的文本(这里用蓝色突出显示):
但我如何“查询”该段落?
这就是我正在尝试(不工作):
def test_intro_text(self):
"""Test that intro text is expected text"""
container = self.browser.find_element_by_id('visual-17')
hed_dek_wrapper = container.find_element_by_class_name('hed-dek-wrapper')
intro_text = hed_dek_wrapper.findElement('p:nth-of-type(2)')
self.assertIn(
'Over the past 20 years, we have seen an evolution.',
intro_text.text
)
我收到此错误:AttributeError:’WebElement’对象没有属性’findElement’
解决方法:
findElement()不是Python.请尝试以下方式:
intro_text = hed_dek_wrapper.find_element_by_css_selector('p:nth-of-type(2)')
assert 'Over the past 20 years, we have seen an evolution.' in intro_text.text
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。