最佳答案
我试图使用 Selenium WebDriver 获取文本,这里是我的代码。请注意,我不想使用 XPath,因为在我的情况下,ID 会在每次重新启动网页时更改。
我的代码:
text = driver.find_element_by_class_name("current-stage").getText("my text")
HTML:
<span class="current-text" id="yui_3_7_0_4_1389185744113_384">my text</span>
我该怎么补救?