171 questions
1
vote
1
answer
488
views
How can I correctly run a selenium standalone-chrome container with a different user than seluser?
I'm trying to work with python and selenium/standalone-chrome to create an automation to download a .xlsx file from my website.
I've configured both the python container and the selenium/standalone-...
0
votes
1
answer
198
views
Can I shift to 1 machine(higher config) with 2 nodes than 2 machines(lower config) each with 1 node in selenium grid?
I am using 2 windows VMs each with 2 CPU cores and 8GB RAM each and my tests run Ok so far using selenium grid. Here I run 7 instances of chrome parallelly distributed over these 2 machines, means 1 ...
0
votes
0
answers
187
views
Selenium grid file upload error org.openqa.selenium.json.JsonException:
I am using selenium grid for file upload, file upload is working for 1kb file but if I am trying to upload a 11mb file it throws the below
org.openqa.selenium.json.JsonException: Unable to determine ...
1
vote
1
answer
238
views
How to Run Parallel Appium Test With Selenium Grid Only By Specifying Platform
I am running parallel robot framework Appium tests using pabot. Below are my config files:
configDevice1.json
{
"capabilities":[
{
"platformName": "Android&...
1
vote
0
answers
526
views
How to configure Node for Android/ iOS devices for Selenium Grid testing?
I'm learning Selenium Grid from scratch.I'm able to run scripts from my hub to my node systems. But when it comes to using android and ios devices as nodes, I've this confusion.
I do not understand ...
1
vote
0
answers
262
views
Appium with Selenium Grid results in - GridException: Cannot extract a capabilities from the request
We would like to run our existing Appium tests in parallel using Selenium Grid.
Env: macOS, stand-alone selenium server:3.141.59, appium: 1.17.1. I have 2 android devices connected.
Error message in ...
1
vote
0
answers
3k
views
How do I set microsoft Edge browser binary file for Selenium Remote Webdriver
I am trying to execute remote webdriver tests using Selenium Grid, My node is a Windows 8 system, and I have insider version of edge installed on it. Now when I try to execute my tests, the node ...
0
votes
1
answer
2k
views
Keep getting SessionNotCreatedException: Unable to create new service: ChromeDriverService error
No matter what I try; latest chrome browser, latest chromedriver, latest selenium server, etc. but when I run the test on Mac OSX I keep getting the above error. I have looked at other similar ...
0
votes
2
answers
183
views
Selenium Grid- Running a test in parallel on IE 11
I want to run my test in parallel on Selenium Grid on IE browser 11.
I have one Hub machine(VDI machine) on which i have one node as well.
Machine 1 , Hub1 and Node1
For the second Node i have another ...
3
votes
2
answers
637
views
Can I use Cucumber with Selenium Grid to run the scripts on different node at the same time?
I have searched for same but faced with failure.
Is there any other tool which can be utilised effectively to run the scripts on multiple node?
0
votes
1
answer
79
views
My test is getting failed when i try to execute on "Linux/XP/etc" platforms using Selenium Grid
i'm new to this Selenium grid.. my node is default registered on Win10 platform.. so it is executing the script without any issue. But when i tried to run on Other than Win10 it is getting failed. can ...
0
votes
1
answer
497
views
How to run selenium grid with protractor
I have set up the hub in one machine(A) by the command
java -jar selenium-server-standalone-3.14.0.jar -role hub -port 4441
and nodes in another machine(B) by command
Java -Dwebdriver.chrome.driver=...
0
votes
1
answer
22
views
Can we change multicapabilies in between the test running in protractor
I am using protractor-cucumber framework(protractor 5.2.2 and cucumber 3.2.0).
I have a requirements like this - posting some details(from DB) to an application with different user credentials.
...
3
votes
1
answer
2k
views
How to run Selenium-Grid on CloudFoundry?
Did anyone run Selenium-Grid on CloudFoundry with routing provided by Gorouter?
According to the "Selenium-Grid Documentation" we can pass the hub address to a node instance like that:
java -jar ...
0
votes
1
answer
2k
views
Selenium Grid: URL in RemoteWebDriver(url, caps)
I am trying to run a test suite using selenium grid, and I was able to establish hub and one node. After this, when I am initializing the RemoteWebdiver(url, caps) call, it is throwing an exception:
...
1
vote
2
answers
3k
views
TESTNG: How to change thread-count dynamically, while running the suite
I am trying to implement parallel running TestNG tests with selenium grid, where grid gets dynamic nodes attached. Based on the number of nodes in the grid I want to increase or decrease the number of ...
-1
votes
1
answer
180
views
Distributed native test execution over android devices
I need to execute a test suite in distributed mode over two android devices . i'm using appium and testng .Any one of you'll able to do so ?
2
votes
4
answers
3k
views
How to run test on specific browser by selenium grid
I have register two platform with chrome browser on windows 7 and windows 10 into selenium grid server.
I want to run a test at Chrome browser on Windows 10 but when i run the test, the test ...
0
votes
2
answers
2k
views
How to determine a test has finished on a Selenium Grid
I am looking for a way I can ensure certain things happen after each test on a Selenium Grid node. (E.g. controlling certain processes on the node)
What is the best way to do on Selenium Grid? ...
0
votes
0
answers
604
views
Selenium grid launching browser on hub instead of node
I have configured my hub and one of the node. Hub is setup on jenkins as a plugin which is running on ubundu machine and my node is running on windows machine.
Hub and node are correctly configure.
...
0
votes
0
answers
936
views
selenium-server-standalone - Browser launches but then a timeout error is displayed
I am trying to launch Microsoft Edge on WIN10 using selenium-server-standalone-3.0.1.
While creating the driver instance, the browser opens just fine on the node, but then the process hangs for about ...
0
votes
0
answers
217
views
Finding element while using Selenium Remote Server
in my test I'm trying to download file from server, verify (if its downloaded) and delete it. But everytime I run my test with remote server (Selenium Grid, Chrome version=59.0.3071.115), I receive ...
0
votes
1
answer
283
views
Can BDD NUnit test cases run parallel in selenium Grid?
I have a BDD framework and using NUnit for test execution.I am trying to implement selenium grid wherein as the default configuration ,I have 5 instances of chrome , firefox and 1 of IE. However when ...
12
votes
3
answers
42k
views
How to terminate session in Selenium Grid(Extras)
How to terminate session in Selenium Grid? My problem is that if my test fail hub still keep session for this test and I can't run another test (it run but fail because can't get free node, because it ...
1
vote
3
answers
5k
views
Unable to run a .bat file in java program
Problem Statement: I just want to start the HUB and Node to perform some tests using Selenium Grid.
I have two Batch files START HUB.bat and START NODE.bat which run perfectly when i manually run them....