![]() |
Question about Webscrabbing with Selenium - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html) +--- Thread: Question about Webscrabbing with Selenium (/thread-27829.html) |
Question about Webscrabbing with Selenium - DasD - Jun-23-2020 Hello all, I trie to wirte a litte Programm to automate posting on Tumblr. I got it managed to log my account in on tumblr using the find by class_name oder id function form selenium. Now im at a point where i dont know how to get the next step working since the find by class_name oder ID dont work for this button i have to click() on. hopfully on of u guys can help me out. ![]() RE: Question about Webscrabbing with Selenium - HarleyQuin - Jun-29-2020 have you tried running driver.find_element_by_xpath("XPATH LINK").click()? |