Questions tagged [selenium-remotedriver]

The Remote WebDriver implementation Controls a browser by sending commands to a remote server. This server is expected to be running the WebDriver wire protocol as defined in JsonWireProtocol.

The Remote WebDriver implementation Controls a browser by sending commands to a remote server. This server is expected to be running the WebDriver wire protocol as defined in JsonWireProtocol

  • Python implementation:

    class selenium.webdriver.remote.webdriver.WebDriver(command_executor='http://127.0.0.1:4444/wd/hub', desired_capabilities=None, browser_profile=None, proxy=None, keep_alive=False, file_detector=None, options=None)
    

Reference: selenium.webdriver.remote.webdriver

48 questions
0
votes
1 answer

How to accessing a downloaded files on remote client from local machine

I have a Selenium Browser config setup which has the following setup: download_path = '/Users/my.user/Downloads' # Setting capabilities for my browser caps = Selenium::WebDriver::Remote::Capabilities.chrome caps['goog:chromeOptions'] = { 'prefs'…
0
votes
0 answers

Multiple sessions with 1 remote standalone chrome driver

I've got a remote standalone Selenium chromedriver running inside of docker. How can I have multiple sessions within this chromedriver? I'm currently running multiple docker containers but would like to run 1 standalone chromedriver and have…
0
votes
0 answers

Selenium: Using a Chrome Profile for Remote Webdriver: unknown error: cannot create default profile directory

Using ChromeDriver v102 (since there's a current bug open for v103 https://bugs.chromium.org/p/chromedriver/issues/detail?id=4121) I get the error (full log information listed below): Response code 500. Message: unknown error: cannot create default…
0
votes
1 answer

error org.openqa.selenium.devtools.CdpInfo: module org.seleniumhq.selenium.remote_driver does not declare `uses`

Why I can't post this, it says 'this looks like spam.' but this isn't a spam, I check every corner of StackOverflow and can't find anything useful to me. Oh god that's frusturating I wanted to create a JavaFX application that uses Selenium for web…
Ege BULUT
  • 1
  • 2
0
votes
1 answer

Chrome node: Unable to execute request: java.net.ConnectException: Connection refused after navigating to second URL

Currently running Selenium Grid with a Firefox & Chrome node on a Ubuntu EC2. Tests are ran with TestNG, tests ran through the Firefox node work perfectly however with the Chrome node I am always getting connection refused after navigating to a…
0
votes
2 answers

Docker & Selenium-Java :- Unable to upload Image/file in chrome browser running on a docker container

I running selenium testcases with a remote driver on a docker container. I want to upload files to a chrome browser running on a conatiner. I have tried the following:- Copied file from my local system(MyDocuments folder) to the docker…
0
votes
1 answer

PyAutoGUI with Selenium remote?

I am using Selenoid (or just selenium remote) with python and want to use pyautogui with it. Is there any ways to do that? I will be thankfull for any information!
0
votes
0 answers

Modify XHR response before sending it to client browser

I am new to Webproxy so need some guidance from the experts! I am running my UI automation tests in Saucelabs using Selenium remote web driver. When the client browser (in Saucelabs) tries to open a URL "https://abc.xyz.com/login", it makes a XHR…
0
votes
1 answer

Selenide Remote browser config for Gradle Test

I am preparing my project to be able to start under Bitbucket + Jenkins. I need to run Selenide solution with Remote Selenium Server (like Selenoid) If I do a basic setup of the Configuration in TestBase Class like: public void beforeTest(){ …
harmider
  • 373
  • 6
  • 18
0
votes
2 answers

Unable to add multiple email addresses to sendkeys() while using Selenium

Unable to add multiple email addresses to sendkeys() while using Selenium. What I'm trying to do is send an email to multiple addreses using selenium remote webdriver to build some test cases. The below logic only sends the email to the first…
0
votes
0 answers

How do I resize windows of selenium remote drivers?

I am writing a script to automate form filling which manually take lot of time. And to do this, I wrote a script which automate by launching 4 different multilogin profiles. The issue here is, each driver's window overlap the other one. I want to do…
0
votes
0 answers

tkinter freezes (not responding) upon button pressing with multilogin automation using python selenium

I am writing a form filling automation script using selenium automation by following this link. So whenever I press the button of 'Run Weekly', the GUI freeze and shows not responding message. The purpose of tabs is to run multiple profiles at once.…
0
votes
1 answer

Firefox session doesn't initiate using selenium grid remote driver - Unable to find a matching set of capabilities

java.version: '12.0.1' selenium server Build info: version: '3.141.59' firefox version = 68 python version = Python 3.7.2 I try running firefox on selenium grid and get the following error: selenium.common.exceptions.SessionNotCreatedException:…
0
votes
0 answers

Facing slowness on executing selenium script through Jenkins(remotely) on IE11 browser

I am facing slowness on trying to execute my selenium script remotely on IE11 However, this is comparatively working fine with local execution Selenium version: 3.141 IE driver: 3.14.0 I am working on a healthcare project and the supported browser…
0
votes
2 answers

Selenium Grid: Use custom browser location with RemoteWebDriver

I am using Selenium grid to run some tests on a remote machine. This is how I start the hub one remote machine A java -jar /usr/local/lib/selenium-server-standalone-3.141.0.jar -role hub and this is how I start the node on remote machine B java…
user4918296