Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
87 views

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....
Luke's user avatar
  • 21
0 votes
0 answers
42 views

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 ├─ ...
user31570842's user avatar
1 vote
1 answer
148 views

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 ...
user31570842's user avatar
2 votes
2 answers
92 views

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....
Rapid1898's user avatar
  • 1,565
0 votes
1 answer
59 views

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....
user30965980's user avatar
0 votes
2 answers
72 views

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 ...
Yavaar Nosimohomed's user avatar
0 votes
1 answer
84 views

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 ...
Yuri's user avatar
  • 1
0 votes
1 answer
59 views

Stack: IDEA Intelij, Java 17, Appium, AppiumServer 2.16.2, XCUITest driver, Apple Problem: Appium dies on the Apple Passcode screen.
Mikhail Nersesov's user avatar
0 votes
1 answer
91 views

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 ...
Sameer Ahmad's user avatar
-2 votes
1 answer
66 views

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/...
Cristina Cabral's user avatar
0 votes
1 answer
471 views

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 ...
Farhan Ahmed's user avatar
0 votes
0 answers
42 views

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....
LTR's user avatar
  • 1,412
0 votes
0 answers
67 views

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 ...
Varun Bharadwaj's user avatar
1 vote
3 answers
230 views

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:\...
user3167022's user avatar
1 vote
1 answer
90 views

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. ...
CC PL's user avatar
  • 13
1 vote
1 answer
66 views

I have a C# automation framework with Selenium, Webdriver and XUnit. I have the following issue on my app, but I will give you an example using StackOverflow page, as I get the same issue. I have a ...
QA Testing's user avatar
0 votes
0 answers
80 views

Please help me to solve this error. I want to scraping using selenium webdriver and rotating proxy, but i don't know what is the correct configuration to seting proxy and got this error. How to do ...
Dwi Nissa A.'s user avatar
0 votes
3 answers
118 views

I already got the tests running with chrome, but now we need to test also with MS Edge. I have downloaded the correct Edge WebDriver (version-vise) and got it up and running with the selenium ...
Mikachu's user avatar
  • 163
0 votes
0 answers
105 views

I have followed the instructions for configurating WebDriverIO (and Mocha) for a TypeScript. Specifically to: install tsx; $ npm install tsx --save-dev and include the following in tsconfig.ts; { ...
Joseph Beuys' Mum's user avatar
0 votes
0 answers
70 views

In my project we are using Selenide framework in the vm where there is no access to normal internet network. The problem is that selenide always tries reach the https://googlechromelabs.github.io/ and ...
larry's user avatar
  • 1
0 votes
1 answer
42 views

I have followed the instructions, but my script isn't working: # Wait for the iframe to be present print("a") result_frame = WebDriverWait(driver, 10).until( EC....
Tandra Wijaya's user avatar
1 vote
1 answer
268 views

I had a MacBook and I was running a code in Python. I never had any problems with its execution. Last month, I bought a new MacBook "MacBook Air (M3)" and ran the same code. On the new ...
Jeferson Carlos's user avatar
0 votes
0 answers
112 views

I'm using selenium on streamlit cloud server and for that i have issues related to chrome, chrome driver, their versioning. There are other threads about this issue but none is solving my problem. I'm ...
IGRISGOD's user avatar
0 votes
1 answer
256 views

I would like to connect via selenium to socks5 proxy but it does not want to accept login and password please help me please in solving this problem. My code: System.setProperty("webdriver....
Mine Cheater's user avatar
0 votes
1 answer
192 views

I'm trying to run webdriver.io tests in a docker container against a recent chrome version. When using a docker image with chrome 127, my tests run fine. After upgrading chrome to v128 or later, I get ...
nathalie cossement's user avatar
0 votes
1 answer
104 views

We have some Selenium tests (defined as part of a .NET test project) that work fine when running locally but don't when run from an Azure DevOps pipeline. We currently suspect that something is ...
ZenoArrow's user avatar
  • 844
1 vote
1 answer
295 views

Hi I am trying to replace devtools with BiDi in my project. Can I get request and response bodies from BeforeRequestSent and ResponseDetails? any form like json or byte sequence or string would be ...
bog bogishvili's user avatar
0 votes
1 answer
248 views

I am trying setup webview automation for my app which is running in Android and iOS devices as a hybrid application(written in react native0 While running my automation code I am trying to switch ...
Happy's user avatar
  • 1,091
0 votes
1 answer
72 views

I'm trying to use Selenium to scroll to a specific section on a webpage and retrieve the text from that section. Context: I’m working with a webpage that disables text highlighting through CSS ...
poe trenton's user avatar
0 votes
1 answer
96 views

I'm trying to scrape recipe titles from a website, Link using Selenium, but I’m encountering an issue where I can only extract some of the titles, while others return empty strings. I’m using the ...
Sou's user avatar
  • 3
1 vote
0 answers
47 views

Here I need to move from Yes to No, so please guide me how to locate XPath for toggle switcher, and please refer below html code WebElement toggleswitch =wait.until(ExpectedConditions....
Naresh p's user avatar
0 votes
1 answer
129 views

I'm using rails 6.1 with ruby 2.6.5 and I’m creating tests for an Active Admin new page, The best way I found to test this new page was by using the gems Capybara, Webdrivers, and Selenium-Webdrivers. ...
Rodrigo Almeida's user avatar
1 vote
0 answers
19 views

After using webdriver io for a while, I want to automate some tasks. For example, I want to use the Touch sensor in the Android emulator, but I can't seem to find the xpath or send keys for that. I've ...
Bilal 's user avatar
  • 11
1 vote
0 answers
136 views

I'm kind of new to Laravel and Dusk-Tests and encountering issues with the Laravel\Dusk\Browser keys()-method. It looks like, that the sent commands are ignored by Chrome. This is the code: $browser-&...
Torsten Schmitz's user avatar
0 votes
1 answer
179 views

I am using Chrome WebDriver latest version of now (Version 129.0.6668.59 (Official Build) (64-bit)). Chrome Driver version 129.0.6668.58 I want to get a title or head of any URL (Youtube, Instagram, ...
kipid's user avatar
  • 618
0 votes
1 answer
181 views

I'm using JMeter 5.6.3 with the WebDriver Sampler version 4.13.0.1 and Groovy for scripting. After upgrading to this version, I started encountering the following error: 2024-09-17 19:30:23,748 ERROR ...
Chamith Priyadarshana's user avatar
0 votes
1 answer
389 views

I am using action chains and lines like the following: actions.click(elementimclickingon).send_keys(Keys.CONTROL + "A").perform() I have subsequent actions in the above line before, like ....
Nakuna's user avatar
  • 3
1 vote
0 answers
130 views

I have the following extremely simple example: driver.Navigate().GoToUrl("https://example.com"); PrintDocument printDocument = driver.Print(new PrintOptions()); File.WriteAllBytes(...
Jake's user avatar
  • 3,399
0 votes
0 answers
24 views

I'm trying to use Selenium for Python to open Chrome and visit a webpage and would like to do a waitFor that waits for a particular outbound network request from the page I'm visiting to be completed. ...
Joshua Stowell's user avatar
1 vote
0 answers
66 views

text filled in textbox but click is no response i am newbie, i try below programme it can help me to fill the text in text box, but it does not click to send out message and return error and try 3 ...
Hoi Ting Cheung's user avatar
4 votes
3 answers
34k views

I have chrome browser of Version 128.0.6613.85 and i want to download the correct webdriver for it. I checked the official webdriver website but i can't find the correct version for it. i want the ...
haarish raj's user avatar
0 votes
0 answers
174 views

I am looking for capabilities, preferences, and arguments that I can set with SafariOptions, SafariService, and webdriver.Safari in Selenium. There are many answers out there regarding ChromeOptions ...
leanne's user avatar
  • 8,909
0 votes
0 answers
2k views

The current Chrome version is 127.0.6533.120. The Chromedriver version is 127.0.6533.119, which was automatically downloaded with the command: service = Service(executable_path=ChromeDriverManager()....
Tupid Tup's user avatar
0 votes
1 answer
39 views

so im trying to translate a website with selenium and firefox profiles, this is my code: from selenium import webdriver from selenium.webdriver.firefox.options import Options #Firefox driver settings ...
androtaurus's user avatar
0 votes
0 answers
47 views

Exception in thread "main" java.lang.NoClassDefFoundError: dev/failsafe/Policy at org.seleniumhq.selenium.http/org.openqa.selenium.remote.http.ClientConfig.<clinit>(ClientConfig....
aarsha sunil's user avatar
0 votes
1 answer
28 views

I am trying to select the HITT element shown below. <span class="classname"> HITT </span> So I tied the following Xpath expression: //span[@class="classname" and text()...
Brk1145's user avatar
  • 50
0 votes
1 answer
343 views

I'm developing a bot using Python 3.12.4 on Windows 10 64-bit with Selenium and undetected-chromedriver. The bot logs into a website and navigates to a specific page without performing any further ...
Kuzey Güneyoğlu's user avatar
0 votes
2 answers
71 views

So I am trying to use selenium Chrome webdriver to select an element based on the Xpath. browser.find_element('xpath', "div[dyc-date='19990301']").click() I am getting the following error: ...
Brk1145's user avatar
  • 50
1 vote
0 answers
294 views

PROBLEM Presenting the problem and the solution together: While developing some Selenium code, I encountered the error [WinError 193] %1 is not a valid Win32 application, which was always related to ...
forest VQV's user avatar
0 votes
0 answers
100 views

I'm running Selenium tests using Python and Chrome WebDriver on Windows 10. The setup was working perfectly a couple of days ago, but now I'm getting a ConnectionRefusedError, where it everytime tries ...
Olga Drakonen's user avatar

1
2 3 4 5
246