Tagged Questions
0
votes
1answer
1k views
Load an external js file containing useful test functions in selenium
The runScript command in selenium is really useful, and I'm using it to total values in a table and then store the value like this
<tr>
<td>runScript</td>
<td>var ...
1
vote
1answer
3k views
Selenium is not able to launch the IE.
Selenium is not able to launch the IE.
10:56:25,005 INFO [org.openqa.selenium.server.SeleniumDriverResourceHandler] Command request: getNewBrowserSession[*iexploreproxy, ...
2
votes
1answer
2k views
Selenium IDE: How to Pass Variables
I have 3 different accounts in a website that I want to login and print a report every single day.
I've done a Selenium IDE recording that allows me to login and print the report, however, every day ...
3
votes
5answers
4k views
Understanding Selenium IDE vs Selenium RC
What is the difference between Selenium IDE and Selenium RC with its functionality?
1
vote
2answers
912 views
from selenium test scripts back to selenese
I've got a bunch of test scripts written using Test::WWW::Selenium (but the fact that I used perl is inconsequential, any language selenium supports probably has the problem I describe). When the ...
1
vote
3answers
1k views
Selenium clicks not working with GWT
I run GWT OBF (thus this isn't the problem), but when I use Selenium (tried both IDE and RC) my clicks don't get recorded. The component I'm trying to click is a <div>, but nothing happens.
For ...
0
votes
2answers
2k views
Typing in a IFrame with Selenium IDE
I'd like to type something in a IFrame with Selenium IDE but I don't know how to do this.
Thanks a lot!
5
votes
5answers
4k views
Selenium.click not working on some anchor elements
The application that am working on was recently revamped and as part of that a new JQuery calendar was introduced. I need to click on a link in the calendar to select the time and date. However, ...
2
votes
2answers
1k views
Extending Selenium: How to call commands?
I read about user extensions and extending selenium but am wondering how to call a command from within a custom command I'm creating.
I added a file similar to the following to Selenium core ...
2
votes
4answers
13k views
How do I retrieve the text in a table column using Selenium RC?
I have a table that looks like the following:
<table class="theClass">
<tr>
<td class="anotherClass"><strong>Label1:</strong></td>
<td ...
1
vote
2answers
745 views
How to automate username/password fill for firefox authentication popup using selenium IDE
I got a selenium script that works, but when it is opened with selenium-rc it is in a new instanced which requires me to re-login. Is there a way to automate filling in the username/password for the ...
1
vote
5answers
274 views
Locating select element in Selenium
Below is the combobox:
<TD ALIGN="left" id="oldcontent">
<select name="status" style="width=150" id="newcontentformat"><option value="14" selected="selected">text1</option>
...