Selenium is an open source framework for testing web applications.

learn more… | top users | synonyms

3
votes
4answers
2k views

How to handle self-signed SSL certificate error in IE8? (Selenium Webdriver + Java)

I am literally stuck to this problem for two days now. Scenario The website that needs to be tested has a self-signed certificate. So Internet Explorer (8 in Windows XP) shows "The security ...
1
vote
4answers
713 views

Xpath captured using Selenium IDE is not running in Selenium RC for Links designed in XML

The below xpath which is captured for links in selenium IDE is not running in Selenium RC. The links are designed in XML. selenium.ClickAt("xpath=/html/body/div/div[2]/ul/li[3]", ""); ...
1
vote
3answers
770 views

Selenium Webdriver cannot locate element for right click event

Hi Guys. I have a problem with right click mouse event in Selenium 2.0. I'm using that method but in a console I've got: Unable to locate element: ...
3
votes
2answers
214 views

Running tests in parallel using Jenkins Grid plugin

I have Jenkins 1.499 running Watir-Webdriver tests on a Windows 2008 (64bit) server alongside the Grid 2 standalone server (and Jenkins Selenium Grid plugin). I can run my tests through the ...
4
votes
1answer
689 views

Selenium Tests run in the background when TeamCity CI is run as a Windows service

Our test suite is written in Python and makes use of the WebDriver Python bindings. We are looking into moving to TeamCity for continuous integration. The setup I have in mind is a build triggered for ...
4
votes
1answer
247 views

OperaDriver is not navigating to desired URL

I have tried to open a URL using the OperaDriver. My issue is that I am getting browser launched but the desired page is not getting loaded. Below is the code. @BeforeClass public static void ...
1
vote
1answer
40 views

how to locate cursors randomly in map

there is a lot of cursors in the map every time you refresh the map you will get another different cursors with different IDs so i can't use the IDs :( i want to click at any cursor, tooltip should ...
1
vote
1answer
1k views

Runtime exception at selenium.start() - Could not start Selenium session: Failed to start new browser session: Error while launching browser

Followed this post - http://stackoverflow.com/questions/1414934/selenium-could-not-start-selenium-session-failed-to-start-new-browser-session Error comes up at selenium.start(). I am using Selenium ...
1
vote
1answer
272 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
294 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 ...
-3
votes
1answer
103 views

Are there tools that can help validate data imported to Excel from a grid view image?

I want to convert a scanned grid view image into excel spreadsheet, and then test its content using some automation tool. Conversion can be done through Optical Character Recognition system but how ...
3
votes
0answers
409 views

Selenium (RC) hangs when started from Python test

Fairly new to Selenium (but loving it). I'm running a single test in Python on Selenium RC. I've been running it multiple times a day for about 3 weeks. Now when I try to run it, it executes all the ...
2
votes
0answers
32 views

How to get the Event Object of the Click event on Selenium IDE?

I am a newb at selenium thing. I have image map area and on click event of this area a function is firing where the click Event Object is being passed to do some calculation. I have recorded the ...
1
vote
0answers
45 views

Handling Alert box on page load

Is there any way to identify the JavaScript alert box (on page load) in selenium IDE? I used commands like "storAlert", "assertAlert" etc. But selenium not identifying alert box.
1
vote
0answers
37 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
205 views

Connection refused error when running selenium with chrome and firefox drivers

I am running selenium tests with firefox and chrome drivers. I get a connection refused error when I run the tests in as a block Test example : require 'minitest_helper' headless = Headless.new ...
1
vote
0answers
111 views

Selenium Webdriver and OpenLayers

I would like to check that the locations asset on map (openLayer) are the same with some asset in a row. What is the best way to do this? I'm using the TestNG framework.
1
vote
0answers
234 views

Passing session while switching control to a pop-up window

I am trying to choose a date by clicking an image which results in a pop-up window with a date picker in it.But when done through selenium the session expires and the login page appears in the pop-up ...
1
vote
0answers
388 views

Selenium RC using Grails unable to open URL

My Selenium RC code is launching the browser but it is taking me to C:\Users\Kanishka\AppData\Local\Temp\customProfileDir3e16427300054effa807e843dd1a332f\core\Blank.html instead of the intended URL. ...
0
votes
0answers
396 views

Why can't my Selenium Grid VM node get parameters from/register to the hub?

I'm trying to set up a Selenium Grid node on a virtual machine. I am using VirtualBox for the VM and Jenkins (with VirtualBox plugin) to set up the grid. When I try to register the node, I get the ...
0
votes
0answers
89 views

Executing test suite from command prompt using selenium

I am using test suites for running more than 3 test cases at a time,while we are executing it is opening the browser in IE,but while running it is showing error as "HTTP error 404" in current test ...
0
votes
0answers
270 views

Chrome driver not working in linux

i have followed following steps in the following link [http://selftechy.com/2011/08/17/running-selenium-tests-with-chromedriver-on-linux][1] unable to run tests on chrome browser in linux getting ...
0
votes
0answers
134 views

Firefox 10 not running Selenium tests via Selenium Grid

I am running version 1.0.8 of Selenium Grid. It mostly works, but I cannot get tests against Firefox 10 (ESR) to run. When the test starts Firefox opens but nothing more. All I get is a white Firefox ...
0
votes
0answers
35 views

Selenium attempting to connect to RC server erroneously

my previously running selenium tests have stopped running on my build server (or build agent to be precise). Running them manually on the box shows me that multiple tests are failing because it is ...
0
votes
0answers
148 views

Automated Test Case should Pass in 2 scenarios. How do I create such test case in 'Robot Framework-Selenium Library'

I am using Robot Framework-Selenium Library to automate testing of a website. I am trying to check if proper message is displayed when incorrect credentials are provided during login. The site ...