Selenium 2 is the second major release of Selenium, an open source framework for testing web applications. A major difference between Selenium 1 and Selenium 2 is the latter's use of WebDriver.
4
votes
2answers
572 views
Issue with losing focus of “hover” command when the mouse is outside of the active window
If I automate mouse actions using Selenium2/Webdriver in combination with Firefox 12, I can easily get the "mouse" to move to and hover over a context menu so the sub-menus are seen. However, if I ...
0
votes
2answers
66 views
Testing Server/Workstation Hardware specs recommendations?
I wanted to reach out and get some opinions of Testing hardware. Should I use VMs or a stand-alone tower? If I use VMs, what would be some recommended hardware specs for the hosting server? If a ...
3
votes
1answer
644 views
Selenium Web-driver tests failing in Test-Controller machine when its not viewed
I am facing a strange problem with my selenium webdriver qa automation project.
FindElementByXPath(element); seems to work fine when running it in my local machine but then does not work when i try ...
3
votes
1answer
251 views
Selenium tests aren´t launched anymore
I used to be able to launch all my Selenium2 WebDriver tests in Ruby on Rails via rake test:units. But recently, my test case(s) won't be found anymore. I dont get any notification or error message. ...
2
votes
1answer
755 views
IE always opens with random local host and msg:"This is the initial start page for the WebDriver server
i have my webdriver tests running parallel in IE, chrome and firefox, when i run test in IE browser it node gets registered with the hub, and the browser opens and it gets redirected to some random ...
1
vote
1answer
83 views
How to know if a checkbox is selected when using robot framework
I am using robot framework. How can I test if a checkbox is selected?
I want to run a keyword if a checkbox is selected like:
${checked} = Checkbox Should Not Be Selected ...
1
vote
1answer
288 views
Failed to start new browser session: Error while launching browser + selenium + robotframework
I'm using robotframework+seleniumlibrary and I often got the following error when I launch test cases
Failed to start new browser session: Error while launching browser
I'm connected by "ssh -X ...
1
vote
1answer
259 views
parameterized JUnit tests with HtmlUnitDriver leading to test termination
I came across an unusual issue with my automation tests while using the HtmlUnitDriver. I have been using the junit parameterized class to iterate over a list of urls to run some of my tests. The test ...
1
vote
1answer
273 views
Is the source code required when using Selenium-RC with Grails?
Can anyone help with using Selenium-RC + Grails? I have used Selenium with Java but had no problem writing the code and launching the browser. But is the source code of my project required when i need ...
0
votes
1answer
296 views
Advance commands of Selenium are not working in IE browser
I am using the SeleniumBackedWebdriver API in my current project, which supports both Selenium RC and WebDriver APIs. The Advanced User Interactions API like mouseUp(), mouseDown(), runScript() are ...
1
vote
0answers
38 views
Fitnesse + WebDriver: any working solution?
Could you please tell me if there were any attempts to integrate Fitnesse and Selenium WebDriver? I'm looking for something like Selenesse (https://github.com/marisaseal/selenesse), but for WebDriver, ...
1
vote
0answers
76 views
“session has expired” error - after clicking a button with webdriver in IE8
After clicking a button in my application with webdriver, it gives me “sorry..your session has been expired” in IE8 and i am unable to proceed. But I am able to do it manually.
Now to proceed with ...
1
vote
0answers
143 views
Dependent methods in the same class run out of order only when included in a “testng suite”; running class independently respects the dependency
I have a class with dependent methods using the TestNG annotation
dependsOnMethods
The test runs fine 100% of the time if I simply run it as a TestNG Test from the package.
When I include the test ...
0
votes
0answers
19 views
How to include passed assertions in the Test NG test resul report
I use Selenium webdriver 2 with Test-NG. Test-NG gives nice report in case an assertion fails. Customer wishes to see the same report in case an assertion passes. Is it possible to do with default ...
0
votes
0answers
180 views
TestNG IRetryAnalyzer not working
I am using TestNG IRetryAnalyser, I am facing following issues
When I implement the listener and override retry () method getting following:
Listener ...