Category "selenium"

Assign a value to a "hidden" input webelement, in SeleniumBasic for Chrome

I have to migrate a web automation program from IE controlled by Excel VBA to Chrome using selenium basic in Excel VBA. The website itself is not public so I ca

Protractor Mac installation Issue - protractor --version zsh: command not found: protractor

I'm interested in using Protractor for e2e testing. But running into some possible installation issues on a Mac(macOS Catalina). The main problem I'm having is

Trouble running InstaPy quickstart

I was able to install InstaPy on an Oracle Ampere Compute VM (ARM processors) running Ubuntu 20.04 LTS. When I try running quickstart.py, it showed me the follo

How can I open multiple browser instances in selenium in c#?

I want my program to open multiple browser instances at once and perform actions. But I ran into a problem, which is that all actions are performed in turn. I h

Unable to click Sign in button of Microsoft Login in C# Selenium

Trying to click Sign In button but getting "Stale element Exception error". IWebElement email = driver.FindElement(By.XPath("//*[contains(@name,'loginfmt')]"))

Selenium / C# Challenge / Threaded / Multiple drivers for each tab on the same browser opened by Selenium

As a preamble: I have an Excel-VBA workbook which can open an IE browser, login to a website with username,password, set up half a dozen webpages in tabs, and i

python selenium xpath loop skips random elements

I was trying to select all the 264 Recipients from the second form on this website and I used the code below: s = Service('./chromedriver.exe') driver = webdriv

Chromedriver Selenium getting 'Connection Reset' when versions match

I am using chromedriver but am sometimes getting the following errors: 03:34:09.188 [AsyncHttpClient-1-2] WARN org.openqa.selenium.remote.http.WebSocket - Conne

How to solve an explicit wait which isn't waiting long enough selenium python

I'm trying to program a sequence of events which are dependent on the last in selenium. First click login which loads a new page, then click a scrollbox on that

How to run a 2 Jenkins slaves simultaneously with only one trigger from the job of master

I have a selenium automation project with Maven and I am currently using XML files to run the batches of test cases locally. Now I have a requirement to run the

Upgrade to Selenium 4 - The type or namespace name 'ChromeMobileEmulationDeviceSettings' could not be found

I'm upgrading a C# program that was using Selenium 3. After updating Selenium to version 4, I get this error The type or namespace name 'ChromeMobileEmulation

python selenium scraping a betting site

I recently started coding a program with python selenium. The goal of the project is to calculate arbitrage possibilitys between two sport bookies (but that doe

Selenium headless chrome with proxy authentication

I'm working on automation of Headless Chrome WebDriver (100.0.48.96.60) using Selenium (4.1.0) and C# (.Net 5.0/Console application). I want to add Proxy Authen

I need to make a random selection of two arguments with a percentage

I need to make a random selection of two arguments with a percentage For example, variable a(like) has a 82.5% chance of falling out, and variable b(dislike) ha

Selenium : googlemap markers dont appear in my xpath elements?

I would like to scrape some informations from a googlemap applet. The page is here : http://www.annuaire-des-psychologues.fr/psychologue/limousin/ You can click

How can I mute the browser/tab in selenium using the geckodriver

I'm trying to mute the browser/tab in selenium since headless mode doesnt mute sounds, I've searched but all I could find was chrome solutions and they didn't w

AttributeError: 'int' object has no attribute 'split' pandas

Please, I know there are several issues related to this error of mine, but I'm learning, I don't understand almost anything, so please, if it's not asking too m

How to check if an element is not displayed in selenium python

How could I check to see if an element is not displayed. I would think it looks something like this. if(element.is_not_displayed): doSomething() else do

How can we monitor the data for test execution on different nodes in a distributed execution on Selenium grid setup on local VMs?

I need some help on the below query: Currently we are using local VMs for Selenium grid execution. (Migration is happening from Selenium 3 to 4 but currently Do

How to wrap the return of @FindBy into another class

The usage of the annotation @FindBy of selenium is: @FindBy(xpath='//xpath/selector') private WebElement element; public void setText(String te