如何使用Selenium和Python在innerText包含前导和尾随空格字符时定位和单击元素

我想找到(并单击)“Reoni”元素,但我不知道将它用于什么功能


我试过


driver.find_element_by_class_name("oe_menu_leaf")  


driver.find_element_by_class_name("oe_menu_text")

但随后硒引发了一个错误元素无法定位,我试过


driver.find_element_by_link_text("Reoni")

这是我要定位的元素:


<a href="/web#menu_id=86&amp;action=99" class="oe_menu_leaf" data-menu="86" data-action-model="ir.actions.act_window" data-action-id="99">

    <span class="oe_menu_text">

    Reoni

    </span>

</a>

和完整的html:

http://img.mukewang.com/615c04190001312306540455.jpg

如果我不够清楚或者您需要我的代码,请告诉我。


犯罪嫌疑人X
浏览 216回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python