remotewebdriver Questions
6
Solved
How can I connect to a selenium grid such as BrowserStack via RemoteWebDriver from behind a corporate proxy?
The application under test is outside the proxy and freely accessible from BrowserStack...
Karole asked 18/1, 2016 at 1:38
4
I am trying to change the language of Selenium Webdriver Firefox from English to Spanish.
I have the following code in place:
def get_webdriver(attempts=3, timeout=60):
firefox_profile = webdriv...
Austinaustina asked 22/9, 2015 at 22:51
2
Solved
File Upload with a Selenium Grid:
Code
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.We...
Crystlecs asked 26/6, 2020 at 13:10
2
Is it possible to open a Selenium Remote Webdriver with a specific remote profile (not temporary) in the server?
I have only been able to pass a browser_profile from the client. If I instantiate t...
Mccomb asked 27/10, 2016 at 18:38
1
Solved
I actually couldn't find a good explanation of whats the difference between RemoteWebDriver and a WebDriver in Selenium.
Here's a code where eclipse told me to cast WebDriver to RemoteWebDriver.
...
Interpret asked 16/8, 2019 at 17:42
2
I know that some selenium capabilities can be obtained with a method, one of them like this :
driver.getCapabilities().getBrowserName();
It returns the value of the browser name.
But if it refers t...
Oriental asked 5/8, 2019 at 6:1
4
Solved
How to resolve this issue. Earlier my code was working, but IE settings were reseted by someone. Now I am getting this exception.
Started InternetExplorerDriver server (32-bit)
2.53.1.0
Listening ...
Myrick asked 21/10, 2016 at 9:18
6
I have two simple tests that are using RemoteWebDriver with ChromeOptions and EdgeOptions. Both these tests are using common code to set capabilities, including the browserstack.user and browsersta...
Ludwig asked 6/9, 2018 at 15:4
1
Solved
I got this exception for all browsers. For example, I create a remote webdriver on chrome like this:
caps = DesiredCapabilities.chrome();
ChromeOptions options = new ChromeOptions();
options.addAr...
Moffitt asked 26/3, 2018 at 13:30
2
I randomly face the issue of missing first character in the ExtJS5 input field, while sending string via sendKeys method.
System info:
Ubuntu 14.04 -> docker containers with selenium grid (2.48.2)...
Rivas asked 29/1, 2016 at 14:12
3
Solved
I have a sample UI test project using v3.4.0 of Selenium.WebDriver.
Everything works fine when I run the tests against a local driver but I want to get things working using Selenium Grid 2.
As so...
Melvin asked 3/5, 2017 at 16:16
5
Solved
new InternetExplorerDriver();
But I could see exception as below:
OpenQA.Selenium.DriverServiceNotFoundException was unhandled by user code
HResult=-2146233088
Message=The IEDriverServer.exe f...
Starnes asked 6/3, 2013 at 12:14
0
I searched and found very similar mentions in older questions from several months ago which seemed to suggest problem should have been fixed by now, but it is still occurring for me.
Pytest on my...
Malayoindonesian asked 26/12, 2016 at 1:21
2
It is always suggested to set the firefox profile in DesiredCapabilities and pass that through the wire ,where the hub is running . Like below
DesiredCapabilities caps = DesiredCapabilities.firef...
Judge asked 8/9, 2016 at 18:44
1
I know that selenium can be used for Android devices by starting adb-server, chromedriver and then creating webdriver.Remote() instance... I'm wondering if there a similar way to operate with web-b...
Ruffner asked 28/12, 2015 at 12:3
2
Solved
Context is provided in case anyone knows of an alternative way to solve the larger issue.
Problem Context
I am spearheading the development of a test automation framework for a web application...
Biz asked 30/10, 2015 at 13:50
2
I received an exception after trying to setup a connection to selenium-server-standalone by using remoteWebDriver in an application test written in Java.
The issue is related the usage of remoteWe...
Dvorak asked 28/2, 2013 at 16:1
1
I'm using selenium grid with 13 nodes, each one is limited to one chrome instance.
My project uses most of those nodes on different times.
In the future, I will need to add more nodes - due to mor...
Gizmo asked 6/11, 2013 at 7:38
1
Solved
So I am running Chromedriver on my computer (win, administrator mode) like
chromedriver.exe --verbose --whitelisted-ips=
On my server I have tests that I want to run on my own computer.
So I se...
Centime asked 29/6, 2015 at 18:54
2
Solved
First of all, sorry for my english, it's not so perfect :)
So I'm facing with the following problem: I'm trying to run parallel tests in different browsers using Selenium Grid and TestNg and I pas...
Damal asked 28/10, 2014 at 9:25
2
I'm trying to get back some performance log info from a remote webdriver instance. I'm using the Python Selenium bindings.
From what I can see, this is information I should be able to get back. Th...
Unfailing asked 26/8, 2014 at 11:29
3
When testing native Objective-C applications, Appium requires a valid .app package, or a .zip archived .app package, in order to run automation against with Instruments.
But I'm doing something t...
Cowbell asked 3/6, 2013 at 17:16
1
Currently I am able to send a firefox profile over a RemoteWebDriver, but I am not able to send the RestCLient extension over the profile.
I require a certain REST client extension(firefox add-on)...
Unbalanced asked 17/5, 2013 at 19:50
1
© 2022 - 2024 — McMap. All rights reserved.