Hey im new to python selenium developing, and i kinda need some help if any one have some extra time:)
Im using this site: https://www.youlikehits.com/retweets.php Im trying to click on confirm button the green one. But for some reson i cant figure out how to click it. Every try it says that it cant locate it.
Do you guys have any ide?
Screen: https://i.sstatic.net/Z31In.png Screen of html code: https://i.sstatic.net/herDB.png
Code:
driver.find_element_by_link_text('Confirm').click()
try:
print("Trying")
print("Making points Click")
time.sleep(5)
except NoSuchAttributeException:
print("Element not found!")
continue
except:
print("Something els is wrong!")
driver.quit()
Best Regards Felix