I have one button, and I want to click on this button , I do
login_form = driver.find_element_by_xpath("/html/body/div/h1/div[1]").click();
my code :
driver = webdriver.Firefox()
driver.get('http://www.textdet.com/')
e = driver.find_element_by_id("imagefile")
e.send_keys("/home/brm17/Desktop/ProjetFinDetude/image.png")
login_form = driver.find_element_by_xpath("/html/body/div/h1/div[1]").click();
But I get:
selenium.common.exceptions.NoSuchElementException: Message: Unable to
locate element: /html/body/div/h1/div[1]
how to click on button Download bounding boxes
on python
by selenium
, the html
<h1 style="position: relative"><a href="/">Scene Text Detection Demos</a>
<div aria-label="..." role="group" class="btn-group" style="position: absolute; bottom: 10px; right: 0px;">
<!--<button id="toggle_text_propoals" type="button" class="btn btn-success btn-sm">Show text proposals</button>-->
<a href="download_bboxes/acdb4bb9-8b73-4020-bfe5-737316033e5e" type="button" class="btn btn-success btn-sm">Download bounding boxes</a>
</div>
</h1>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…