Tagged Questions
Selenium Remote Control - Answer to UI level functional test automation
22
votes
3answers
2k views
Help me improve my continuous deployment workflow
I've been developing a workflow for practicing a mostly automated continuous deployment cycle for a PHP project. I'd like some feedback on possible process or technical bottlenecks in this workflow, ...
14
votes
3answers
4k views
Simulate TAB keypress event in Selenium RC
I need to simulate a tab keypress in Selenium RC, using the Java API.
I do this after having entered some text using:
selenium.type(input, "mytext");
I've tried 3 alternatives to get the tab ...
14
votes
1answer
5k views
List of Selenium RC browser launchers
I am trying to find a full list of Selenium RC browser launchers. So far I've not been able to find any documentation that lists them all. I've gathered the following ones from various sources.
...
13
votes
4answers
733 views
Testing a “Dojo” web application with Selenium
Has anyone done some extensive automation with Selenium and a Dojo-heavy web app? I'm looking for any issues or problem that you might have run into or issues related directly to the combination of ...
10
votes
3answers
4k views
what's the relationship between selenium rc and webdriver?
I can see that since selenium 2.0, webdriver and selenium rc are packaged together for download. Now I primarily use webdriver, but can I bring in selenium rc in my testing scripts from now and then? ...
9
votes
2answers
5k views
What is the difference between Selenium Remote Control and Selenium Server?
On Selenium download page, there is a link to the Selenium RC (Remote Control).
On another Selenium download page, there are links for a Selenium RC 1.0.3, as well as Selenium 2 Server, sometimes ...
8
votes
1answer
359 views
Selenium RC:How to launch Interactive testing with Multiple browsers
I want to automate this scenario. UserA assign an item to UserB, who gets an alert message. In order to do this I want to have two different browsers launched with different accounts to test this ...
8
votes
4answers
4k views
How can I count the number of elements that match my CSS selector?
I am trying to use SeleniumRC to test my GWT App and am trying to match elements using CSS selectors.
I want to count the number of enabled buttons in the following HTML.
A button is enabled if it ...
7
votes
2answers
3k views
How to use javascript-xpath
I am using Selenium RC with IE 6 and XPath locators are terribly
slow.
So I am trying to see if javascript-xpath actually speeds up things.
But could not find enough/clear documentation on how to use ...
7
votes
4answers
4k views
6
votes
5answers
701 views
How to iterate through DOM elements that match a css class using xpath?
I'm processing an HTML page with a variable number of p elements with a css class "myclass", using Python + Selenium RC.
When I try to select each node with this xpath:
//p[@class='myclass'][n]
...
6
votes
2answers
3k views
Selenium and :hover css
Using selenium-rc and the java client, I want to test a menu which opens when the user moves the mouse over it. It closes when the mouse leaves the menu. This is done using :hover css, without any ...
6
votes
3answers
5k views
Why is Selenium RC so slow?
For some time I have been investigating Selenium RC in order to do functional testing of my web application. I have now found a test strategy that is so effective, that I do not want to move away from ...
5
votes
2answers
148 views
Selenium: How do I assert that a certain element is present in a cretain cell of a certain table?
I have a table on my page which is supposed to contain a certain element. I can identify the table by its name (it has a unique name), and I can also identify the element easily. I would like to ...
5
votes
2answers
992 views
How do I use the HTMLUnit driver with Selenium from Python?
How do I tell Selenium to use HTMLUnit?
I'm running selenium-server-standalone-2.0b1.jar as a Selenium server in the background, and the latest Python bindings installed with "pip install -U ...
5
votes
9answers
14k views
Selenium RC > how to upload file using attachFile()
I am using Selenium RC with Junit framework. I am trying to upload a file using attachFile() method.
attachFile: (Information collected from selenium API ...
4
votes
2answers
81 views
How to execute choice of test cases from multiple test cases
I want to execute few selected test cases from my class of multiple test cases using php unit with ease.
As my 1-2 test cases are failing from bunch of test cases and also finding difficult to ...
4
votes
3answers
359 views
How to access a stored value in PHPUnit_Extensions_SeleniumTestCase
How can I store a value within Selenium-RC (through PHPUnit) and then retrieve/access it later using PHPUnit?
Suppose I run a command like the following in a test:
$this->storeExpression( "foo", ...
4
votes
1answer
160 views
Newbie question about Continuous integration and selenium tests,
I'm very new to C.I. but I have recently inherited a project where Team City has just been implemented and I'm slowly getting my head around it. One thing we would like to do is run some Selenium ...
4
votes
2answers
582 views
Selenium more than one baseUrl per test class
I am writing selenium scripts on a complex web based application.
To use a useraccount I need to register first using one URL and then approve the account in the admin console on another URL.
The ...
4
votes
4answers
1k views
How do I test which element has the focus in Selenium RC?
The title says it all.
How do I test which element has the focus in Selenium RC?
4
votes
4answers
3k views
Checking HTTP Status Code in Selenium
Can I in selenium get the HTTP status code?
E.g. so I can test that if the browser requests /user/27 and no user with ID=27 exists, an HTTP 404 is returned?
My primary interest is Selenium RC, but ...
4
votes
3answers
453 views
Run UI SeleniumRC tests as a part of CI process
I'm trying to setup CI environment for QA department. They use SeleniumRC to run UI tests in IE and FF browsers to test some web application. I had a success configuring it to run as a windows service ...
4
votes
5answers
5k views
Selenium RC Having problems with XPath
I'm using Selenium RC with chrome-mode for Firefox to automate test cases for a web application. I'm writing the scripts in Java using TestNG framework and Eclipse. Now to the main point:
I'm having ...
3
votes
1answer
43 views
How to automate selecting a date from jQuery UI date selector in Selenium RC?
There are 2 date fields, DateField1 and DateField2. On clicking on either of the fields, jQuery UI date selector becomes available. 'DateField1' has a default value of current date. The user needs to ...
3
votes
0answers
531 views
Starting google-chrome via Selenium on headless debian system
I'm trying to start the google-chrome browser in disabled web security mode. The selenium log says:
15:36:33.526 INFO - Command request: getNewBrowserSession[*googlechrome, http://www.myurl.de, , ...
3
votes
1answer
768 views
How stable and fast is HtmlUnit
I'm upgrading from selenium-1 to selenium-2 and trying out the new HtmlUnit driver. I've tried a few basic tests on it (open a page, get_text,..) and it seems
Extremely slow (I think the chrome/FF ...
3
votes
2answers
151 views
How to suppress display of password in Selenium RC window
I am writing some Selenium RC tests using the perl library WWW::Selenium. At the beginning of the test I need to login to a web form using my username and password.
I noticed that my password is ...
3
votes
1answer
453 views
Test browser locale using selenium webdriver
I'm trying to test our website with different accept-language headers. So if accept-language header is fr it shows "bonjour" and if the accept-language header is "en" it shows "hello".
I'm doing ...
3
votes
3answers
280 views
Using Selenium to 'click' on non-input or non-control elements
Has anyone been successful with getting Selenium to issue a mouse click on an element which is not associated with input, i.e. plain text? I have tried using click() and click_at() methods, as well ...
3
votes
1answer
210 views
css first and last doesn't work in selenium rc
I have a query:
x= sel.is_element_present("css=div#result form[class*='result']:last")
gives me false, but this:
<td>storeElementPresent</td>
<td>css=div#result ...
3
votes
3answers
2k views
“Cannot call method 'indexOf' of undefined” when using Google Chrome (*googlechrome) as Selenium RC target
I'm trying to run a test in Google Chrome 9.0.597.98 beta using Selenium Grid. I'm firing the test off from C# using the default *googlechrome target that ships with Selenium Grid. When I try to ...
3
votes
3answers
540 views
Problem with brackets[?] in css selector in Selenium-python
Below is my script which check is element present. When I give this selector:
css=input[name='flightSearchParam[3].originAirport']
in Selenium Ide it find me this element, but when I run this in ...
3
votes
2answers
775 views
Use Selenium RC directly or Selenium with Robot framework
I have to admit that I fell in love with Selenium for its record-and-play feature as well as the testcase generation functionality for those recorded actions from the IDE. But I am still hesitated to ...
3
votes
1answer
534 views
Best practices in testing a website
In our QA team, we run a suite of automated tests on every commit the developers do. Since there are quite a few such commits daily and no developer wants to wait more than a few minutes to get ...
3
votes
1answer
624 views
Jquery doesn't find element in selenium
sel.add_script( sel.get_location(), "jquery.js")
#here I get u'fd6c42bcc770ca9decc4f358df3688290a4257ad'`
...
3
votes
2answers
534 views
selenium automation test in Linux problem: firefox can't be closed automatically
I am running automation testing for web GUI in Linux by selenium (selenium RC). In fact, I can run selenium automation test in windows, the results are fine and firefox can be closed automatically ...
3
votes
1answer
202 views
Selenium takes > minute between commands
Selenium seems to be pausing for about a minute between each step (I haven't seen less than 60 seconds). Even steps that should be simple (like setSpeed) run at the same rate.
However, when I use ...
3
votes
4answers
436 views
Selenium - checking image validity
I'm creating a suite of Selenium tests for an web album application. I would like to test whether an image is actually displayed (it contains valid image data). Is such thing possible?
Thanks for ...
3
votes
2answers
435 views
How to delete multi-domain cookies programmatically using Selenium RC / Java
Selenium has the deleteallvisiblecookies construct which deletes all cookies when the tests run in the same domain.
For products that invoke access control e.g. typically the URL is trapped by the ...
3
votes
3answers
1k views
Selenium Server on startup
I'm using Selenium RC in a Ubuntu system.
I want to automate the tests, and I need to start Selenium-server.jar on startup of the machine.
I created seleniumServer.conf in /ect/init/ with:
start on ...
3
votes
2answers
290 views
Selenium RC compilation warning for C#
When I compile my code in VS 2010 (.NET 4.0), I get the following warning:
"Warning 1: The referenced assembly "ThoughtWorks.Selenium.Core" could not be resolved because it has a dependency on ...
3
votes
3answers
960 views
howto hide firefox add-on popup initiate by selenium rc?
everytime i test my selenium test, the instant of firefox will popup and show page of selenium rc. It's ok and cool. But i have problem. For every test i also have to see a firefox's page pop up and ...
3
votes
2answers
920 views
Selenium-RC Unable to handle Confirmation box
I am testing a web app where i delete an item from a list. Upon clicking on delete, the app asks for confirmation. Selenium IDE detects it as a confirmation box. When I run the code thro' the RC (C#), ...
3
votes
1answer
640 views
How to test jquery ajax tabs with selenium?
I'm testing a django app with selenium, and one of my pages uses the jquery ui tabs element. One of the tabs contains a simple table listing some users, and is loaded via ajax. When using the app, the ...
3
votes
1answer
86 views
Running a javascript inside the head tag in Selenium RC
I want to run a javascript snippet inside the <head> tag. Is that possible to do that in Selenium RC+Java?
I understood that if I use getEval or runScript that will insert the code inside the ...
3
votes
1answer
511 views
Is there any way to delete an HttpOnly cookie from C# Selenium tests?
I have a set of C# Selenium tests that need to delete a cookie that has the HttpOnly flag set.
Unfortunately the DefaultSelenium.GetCookie() and DefaultSelenium.DeleteCookie() commands aren't able to ...
3
votes
1answer
289 views
How to return a whole column with Selenium?
I know that Selenium has a built-in method getTable("tableName.row.column") can return a cell conveniently. However how can I return a whole column?
I've tried getText() directly, however only the ...
3
votes
2answers
896 views
What is the best way to assert redirections in Selenium?
I am writing a selenium test and I need to assert that the page is redirected. How should I verify this? What would be the best way?
I am using PHPUnit and the PHPUnit_Extensions_SeleniumTestCase.
3
votes
3answers
987 views
Don't stop on HTTP error 403
In one of my Selenium test cases, I try to ensure that certain pages can't be accessed. Instead, HTTP return code 403 should be given.
However, here Selenium terminates test execution with the ...