Trying to pick value in the dropwdown list as shown in picture – Dresses Dropdown IMAGE with open HTML By this line i’m able to click and expand the dropdown After i expand the dropdown list i tried to pick xPath/CSS selector for Dresses but nothing works How i copy the Selector Answer Induce WebD…
Tag: selenium
Selenium Chromedriver error chome not reachable but driver get works
I am trying to get the page content from a webpage, with the use of selenium and chromedriver. I am using an Ubuntu 18.04 subsystem on Windows. The driver.get method works, but getting the page content does not. Here is my code: Here is my error: Don’t really know what to do anymore, I tried changing ch…
How to find element by part of its id name in selenium with python
I’m using selenium with python,now I want to locate an element by part of its id name,what can I do? For example,now I’ve already located a item by id name coption5 : Is there anyway I can locate this element only by using coption? Answer To find the element which you have located with: To locate …
Selenium – How to find color of a pixel on canvas on X Y position?
I’m using selenium with python and I have a problem: I want to get pixel color of x y position on canvas. Does Selenium have some color picker or something similar? I tried get color of a pixel with getCssValue but it doesn’t work because it is canvas. This is an example what I’m trying to a…
python selenium cannot locate clickable play button on mobile version of webpage
I am having a hard time locating the play element on a mobile version of a webpage (my python script is passing a mobile user-agent in the header.) the website url is below (NOTE: must be accessed with a mobile user-agent else it won’t show the correct page and reverts to standard browser page instead) …
Accessing the contents on links provided on a webpage while webscraping
This is a followup question of my previous question. I am trying to access the contents of a webpage. I could search for contents on the webpage. However, I am not sure how to access the contents in links given on the webpage. For instance, the first line of the search result for id 1.1.1.1 is 36EUL/ADL_7 1.1…
WebDriverException: Message: chrome not reachable after long time
This is the code: I need to open first selenium and then make things that require hours because when i open selenium i need to be ready and speed. If put driver = webdriver.Chrome() below the while, it would slow everything down i don’t know if it is relevant but i run this code with nohup command. Trac…
How to send text to the Email field within https://accounts.google.com registration page?
I made proton mail maker script that can go to google sign in and put verification code to proton mail code section.. when I run that, it’s working correctly but it’s not typing google account for signing but he is not typing in the email section I had an error in google account email section here…
Web scraping Trulia with Pythons Selenium
I am trying to webscrape the trulia estimate for a given address. Although some addresses do not have a trulia estimate. So I want to first try to find the text ‘Trulia estimate’ and if it is found then I will try to find the value. At the moment I cannot figure out how to find the Trulia Estimate…
How to click a button on a website by finding its id
When I run the code, the website loads up fine but then it won’t click on the button- an error appears saying the element is not interacterble. What do I need to do to click the button? I am relatively new to this and would be grateful for any help. I have already tried finding it by id and tag.