12,281 questions
2
votes
1
answer
99
views
How to run the AdGuard extension in WebDriver?
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from selenium....
0
votes
0
answers
55
views
Cucumber steps are undefined in WebdriverIO + Appium with TypeScript
I am trying to implement Cucumber in my Appium + WebdriverIO framework, but I am stuck: my steps are coming up as undefined even though they are correctly defined.
Project structure:
Project name
├─ ...
1
vote
1
answer
205
views
Appium fails to find chromedriver for WebView: Trying to use binary that doesn’t exist
I’m trying to automate an Android WebView app using Appium + WebdriverIO (v9) for my hybrid app.
My test fails when I try to switch to the WebView context:
[0-1] 2025-09-25T13:54:41.590Z WARN ...
2
votes
2
answers
100
views
Get url of second tab using selenium?
I'm trying to get the second tab url using the following code -
import time
import os, sys
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver....
0
votes
1
answer
61
views
How to select only one Webdriver to run the test
I am learning selenium with Pytest and have configured conftest.py like this
import pytest
from selenium import webdriver
from pages.homepage import HomePage
def pytest_addoption(parser):
parser....
0
votes
2
answers
74
views
Iterating through List of WebElements not working correctly in Selenium Java
I have tried looking for answer or solution for this everywhere on the internet as to why this is happening but came with no luck. I thought I would has my question here. The project I am working on ...
0
votes
1
answer
88
views
Chromedriver with proxy
We have a test software based on chromedriver. The test is a site check from one computer, but under different proxies. The proxy is connected via a JavaScript script. About a month ago, I had to edit ...
0
votes
1
answer
75
views
Appium can not manage Apple Passcode prompt
Stack:
IDEA Intelij, Java 17, Appium, AppiumServer 2.16.2, XCUITest driver, Apple
Problem:
Appium dies on the Apple Passcode screen.
0
votes
1
answer
103
views
I can't seem to get .waitForDisplayed/exists methods to work for elements the moment i switch between apps
const el = browser.$('//android.view.View[@content-desc="Login"]');
await el.waitForDisplayed({timeout:5000});
if this snippet gets executed without shifting between apps, it works like a ...
-2
votes
1
answer
66
views
Used webdriver.ChromeService to save path as a service, but os.path.expanduser function does not recognize the format
I'm trying to scrape a real estate website, but I'm getting an error early in the process.
Here's the problematic code:
chromedriver = webdriver.ChromeService(executable_path=r"D:/My Download/...
0
votes
1
answer
554
views
Selenium WebDriver: "Session not created - Chrome not reachable" when using a copied Chrome profile
I am trying to automate Chrome using Selenium by creating a new Chrome profile, copying the contents of the Default profile, and launching it with Selenium to retrieve cookies. However, I keep ...
0
votes
0
answers
43
views
Selenium ChromeDriver freezes in the constructor on an Async operation
I'm using this code to create a new instance of Selenium ChromeDriver in C#:
internal static IWebDriver createMyDriver()
{
var opt = new ChromeOptions();
var userProfile = Environment....
-1
votes
0
answers
75
views
Cache access denied error when chrome driver is used to reach a portal behind a proxy server
I have services running on docker containers:
-Python-Behave
-Selenium
-Chrome driver
I am trying to run the python container with a proxy. There is some problem when i try to reach the URL over the ...
1
vote
3
answers
281
views
Selenium webdriver stop after open Chrome window with existing profile
Selenium webdriver stop after open Chrome window with existing profile.
After last Chrome update, i have problem with my code. Driver updated too.
driver = webdriver.Chrome(executable_path='C:\...
1
vote
1
answer
93
views
Selenium doesn't open website with provided url (url is valid)
I try to open whois EURID website with no luck. Selenium opens browser (tried with Chrome and FF), but when I try to open particular URL (http://whois.eurid.eu/):
nothing opens, I got blank page only.
...