Skip to content
Advertisement

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 additional steps needed to operate the function bound to the button? Thank you in advance.

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 and it worked

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 opening anymore I saw that the xpath is slightly different so i tried it

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 desperate I don’t understand why it does not

Search for a specific element in multiple pages and click using Python Selenium

Hi im trying to navigate from page 1 to page 5 (the element can be in any of the pages)and find and click on a specific element using python selenium. The following is the element from the page: <span _ngcontent-mtx-c123″” class”ng-star-inserted”>ABC Company</span> i tried by using : driver.find_element_by_name(“ABC Company”).click() but this doesnt work. Another Way i tried: I need the

Advertisement