python selenium 点击开始按钮_使用Selenium和Python单击一个按钮
I have the following code:
Expand all
When I click on expand all, the whole page loads. How can I do it using WebDriver for Python?
解決方案
As per the HTML you can use the find_element_by_link_text and invoke click() method as follows :
driver.find_element_by_link_text("Expand all").click()
You can get more granualar with find_element_by_xpath as follows :
driver.find_element_by_xpath("//a[@class='sectionname' and contains(.,'Expand all')]").click()
Update
As you still don't see the expansion you can try the Javascript way as follows :
myElement = driver.find_element_by_xpath("//a[@class='sectionname' and contains(.,'Expand all')]")
driver.execute_script("arguments[0].click();", myElement)
總結
以上是生活随笔為你收集整理的python selenium 点击开始按钮_使用Selenium和Python单击一个按钮的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 安祥是什么意思 安祥的意思
- 下一篇: python flagin flagou