Tagged Questions
0
votes
0answers
29 views
What is the solution for “Could not initialize class org.openqa.selenium.firefox.internal.Executable”
I am running Firefox version 19 in grid
Hub-Mac machine
Node- Windows Vista
while setting node in windows i used "-Dwebdriver.firefox.bin=<path of firefox19-bin>"
0
votes
3answers
72 views
How to run chrome browser in grid using MAC as hub and Windows as Nod?
Hub: MAC 64-bit
Nod: Windows 32-bit
Unable to run chrome browser using Selinum grid MAC as hub and Windows as nod?
using below code i am getting an error (The path to the driver executable must be ...
1
vote
2answers
73 views
Testing UI Performance/Latency using Selenium/TestNG
I have a requirement to measure UI latency for different functionalities in the web GUI application.
For example to measure latency in Login operation
1) Enter Username, password.
2) Click Login ...
1
vote
1answer
100 views
How to execute Robot Framework (SELENIUM) Ride Test cases in parallel
I have written my RF testcases using reusable keywords (built using native selenium webdriver not using Selenium2Library) and It works fine on single instance for what so ever browser I run.
But, I ...
0
votes
0answers
41 views
Turning off SeleniumServer logging
We are programmatically kicking off a SeleniumServer at the start of our test run.
server = new org.openqa.selenium.server.SeleniumServer();
server.start();
The problem is, the SeleniumServer's ...
0
votes
1answer
83 views
Naming selenium grid nodes. Spawning a specific node
I'm trying to implement a kind of default queues in selenium hub.
There is a possibility to specify node's name (actually its environment, smth like "firefox on ubuntu" or "chrome on windows"). ...
0
votes
0answers
116 views
Click button in Mozilla alert using selenium IDE
I am new to selenium ide. I am facing a problem to handle an alert dialog box in the Mozilla browser using selenium ide.
Scenario: When I click on a link on my web page it navigates the user to a new ...
0
votes
1answer
45 views
Run mocha tests parallelly using selenium grid
I have 1000 test files similar to following test file. I would like to setup selenium grid inorder to run these tests parallelly on different machines. After setting up selenium grid and multiple ...
-1
votes
1answer
93 views
JUnit 4 (WebDriver) on Ubuntu
I use Junit 4 and selenium WebDriver and Eclipse to run my test on ubuntu.
When i run my test i have this error:
> org.openqa.selenium.StaleElementReferenceException: Element not found
> in the ...
0
votes
0answers
61 views
Only one browser running with selenium Grid while other are launched inactive
I am running my tests on selenium Grid.I am facing a problem like only one browser(firefox) is fed commands b server.Other browsers launched just load the URL and stay still.No activity happens in ...
1
vote
1answer
336 views
using selenium grid remote webdriver java client to take screenshots with messy characters returned
I established a selenium grid 2 on one linux platform, with both hub and node on the same machine. Then I used selenium remote webdriver(java client) to take a screenshot of www.google.com.hk page. ...
0
votes
1answer
361 views
How to run selenium test case in two different nodes?
Actually I need to run my single selenium test case in two different nodes using FIREFOX browser (selenium grid) , I have started my hub using below command
java -jar ...
1
vote
1answer
144 views
How to get the number of idle browsers for a node in selenium grid2
My current setup is 5 nodes with 10 Firefox browsers each, all connected to a hub.
I am running into a problem where I am exhausting the 10 firefox browsers for each node. So any new selenium runs ...
0
votes
1answer
170 views
How to click on an hidden drop down menu element using webdriver, which is not a select
I want to click on delete which is in the sub menu.
I tried the below code, but nothing happens.
wd_handle.execute_script("document.getElementById('optionPanel').hidden=false;")
...
0
votes
2answers
256 views
WebDriver Chrome Browser: Avoid 'Do you want chrome to save your password' pop up
Every time my webdriver tests login into the application, 'Do you want chrome to save your password' pop up appears.. Is there a way to avoid this??
Please help.
Thanks,
Mike