**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
我试图从这行代码中获取Aria标签值“021”,但返回了None
。
我目前的代码enter image description hereenter image description here
2条答案
按热度按时间efzxgjgh1#
需要为bdi元素而不是span元素设置xpath。bdi元素包含要提取的文本
021
应该是
0aydgbwb2#
根据给定的HTML:
可以从
<span>
标记或从后代<bdi>
标记提取***021***。溶液
要打印***021***,您需要为visibility_of_element_located()引入WebDriverWait,您可以使用以下locator strategies之一:
<span>
标记和 *aria-label
* 属性:<bdi>
标记和 *text
* 属性: