Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
850 views
in Technique[技术] by (71.8m points)

Click a button using Selenium and Python

I have the following code:

<a class="sectionname" href="#" onclick="expandAll();return false;">Expand all</a> 

When I click on expand all, the whole page loads. How can I do it using WebDriver for Python?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...