Selenium return empty images after few images
I am working with selenium and I want to get to images. The problem is that the selenium works up to 21 images and after that, it returns empty URLs like below.1 :...
View ArticleHow to run multiple instances of Chrome parallely with webdriver in python?
Hi I try to open parallely multiple instances of Chrome in python using Webdriver and Multiprocessing. After running processes, instances are opening smoothly, but they are not sent to my "instance"...
View ArticleWhy can't I find element with selenium?
So I've tried almost every method that I knew of including xpath and nothing. It should be a simple find element and click and that's it, but I can't figure it out.Here is my code from selenium import...
View ArticleAngular drag & drop with HTML5 not working through Selenium and Python
My code does not working on demo AngularJS Drag and Drop list: http://marceljuenemann.github.io/angular-drag-and-drop-lists/demo/#/simplefrom selenium import webdriver from...
View ArticleDriver info: driver.version: unknown using ChromeDriver v78.0.3904.70 and...
I am using java 1.8 with chrome browser version 78.0.3904.97. I am trying to execute my selenium script code with the chrome driver version 78.0.3904.70. but while execution I am facing below issue and...
View ArticleWhy selenium crashes when I set google chrome profile? [duplicate]
This question already has an answer here:Selenium: Point towards default Chrome session 2 answersHow to open a Chrome Profile through --user-data-dir argument of Selenium 1 answerHow to use Chrome...
View Articlehow to use selenium python to open new chat whatsapp (i need to target the...
I need to target the second icon New Chat but they have the same class namefrom selenium import webdriver driver =...
View ArticleWhat are the alternatives to Behat for Python?
I have an script in Python to test login on a web page. My question : What are the alternatives to Behat compatible with Python?. Thanks
View Articlehow to download a file given a link using python selenium?
I have been downloading a file for stock market data using urllib, which was working fine, but recently that has been blocked from locations out of country, and I am currently outside. :( hence, I am...
View ArticlePython wait for document to be ready in selenium browser?
I have made a Proxy Checker in python in combination with selenium so everytime its opening the selenium browser it uses a different proxy.. But not all the proxies work and I'm stuck with loading the...
View ArticlePython Selenium binding with TOR browser
I researched on it but I get that solution:from selenium import webdriver profile = webdriver.FirefoxProfile() profile.set_preference('network.proxy.type', 1)...
View ArticlePython 3 Selenium selecting drop down menu. Not being able to locate the drop...
I'm having a problem location the drop down button, it doesn't have an Id or a unique class it also doesn't have text on the drop down bar I'm not sure how to locate it. Any suggestion? This is my...
View ArticlePython and Selenium, cannot click on a submit button
In this scenario, I am trying to click on the submit button with Selenium webdriver but so far have been unable to click the element.<button type="submit" class="pcty-button pcty-size-medium...
View Articleunable to locate iframe with xpath and id in python selenium
I have been trying to click an accept button in an iframe, but I am unable to locate this iframe with xpath. I have checked similar SO posts but to no avail.Selenium can't locate iframe, python...
View ArticleHow to launch actual browser instead of testing browser from geckodriver?...
This question already has an answer here:webdriver.FirefoxProfile(): Is it possible to use a profile without making a copy of it? 1 answerSelenium - How to import all settings from an existing Firefox...
View ArticleHow to identify tags for which those don't have the style attribute?
I have a scenario where there is a table and when I search that table i will get a result set and I need to verify whether the search data is available in search result or not.I have around 1000 li...
View ArticleChrome browser certificate is not trusted issue using browsermob-proxy
is there away to make chrome ignore the invalid certificate caused by using browsermob-proxyi'm using google.com just for example reason, in the real case i need to provide credentials and login and...
View ArticleGet all Nav elements and click each nav link
I tried too many different ways but really can't get the result I need.I need to create an automation to test and click all sidebar nav links which are changing contents depending on user to use. So I...
View ArticleSelenium Fetching Values In Changing HTML values
I want to scrape a website where a bunch of <li> are changed in mere seconds how do I do this without having to refresh the page?I'm trying to scrape: https://www.betburger.com/arbs as you can...
View ArticleSelenium chromedriver exception when enumerating elements by xpath
I'm trying to convert a Selenium script from Firefox to Chrome. The code works as expected with Firefox and geckodriver on x86_64. geckodriver does not support ARM well so I am attempting to move to...
View Article