Skip to content

Tag: selenium

Clicked button doesn’t really function by Selenium Python

I’ve been trying to click a button that downloads a CSV file from “https://mol.org/regions/?regiontype=countries”. I’m sure that I’ve selected the button, as I can print the text written on it, but whenever I try to .click() it, it doesn’t download the file. Are there any a…

Web scraping in Python using Selenium

I am new to web scraping and i am facing a problem. In the appending part, it seems to append only the first row of the table I want to scrape! I am sure I am missing something. Any ideas? Thanks in advance! The code snippet is the following: Answer UPD You are using a wrong locators. All the parameters

Python selenium google map elements unable to locate

the code I’m trying to find elements are here is the element I’m trying to access please check the image the url of the google page is google page link but it says elements unable to find I’m using full xpath Answer just right click on what you need and press inspect tried it on the review a…

How to login using Selenium

I have one web site like www.abc.com in this I need to add Email and press continue and in second page I need to add password and check the check box so how can I enter the password in 2nd page. I tired with : Answer Before getting the web element you have to validate the element is fully loaded

Selenium / More-Element clicking not possible allways?

I try to click on the more element on these pages – with the following code for the following link this works fine with finding element per xpath: But when i try the same code with another link / app like https://apps.apple.com/us/app/contacts-backup-pro-restore/id1120943403?uo=4 the more-element is not…

Finding button by XPath with Selenium

I have been trying to locate the following button using Selenium WebDriver: I used css selector, xpath, class and nothing seems to work (even by just copy pasting the one given by the inspector. The closest I’ve been is locating the div with the class _1ibtygfe) Here is everything I tried, I’m des…