Questions tagged [selenium-ide]

The Selenium-IDE (Integrated Development Environment) is the tool you use to develop your Selenium test cases. It’s an easy-to-use Firefox plug-in and is generally the most efficient way to develop test cases.

Selenium IDE is implemented as a and extension, and allows you to record, edit, and debug tests. Selenium IDE includes the entire Selenium Core, allowing you to easily and quickly record and play back tests in the actual environment that they will run.

Getting Started with Selenium IDE

2219 questions
4
votes
2 answers

Can Selenium IDE/Builder run same test case on many pages?

Is there a way to run the same Selenium test case on many pages without specifically defining a list of pages? Say, for example, I have a UIMap pageset defined like this: var map = new UIMap(); map.addPageset({ name: 'pages', description:…
4
votes
2 answers

Handle Securtiy Warning pop-up in FireFox with Selenium IDE

I am using Selenium IDE 2.5.0. When used Firefox 23.0.1, it displays "Security Warning" popup window with "Continue" and "Cancel" option. Once this popup window displays it does not allow to select anything or view source file before clicking…
4
votes
2 answers

Selenium IDE click and drag

I am using the Selenium IDE extension for testing webpages in FireFox and I was able to find out how to perform almost every command that I need to automate testing for my webpage. Unfortunately I was not able to find out how to do this through the…
user3261832
  • 45
  • 1
  • 7
4
votes
1 answer

How do I select html injected from jQuery with Selenium IDE?

I'm currently using Selenium IDE to fill a form. The form has a select box for countries: The province options above is…
Thierry Lam
  • 45,304
  • 42
  • 117
  • 144
4
votes
3 answers

Which selenium IDE command should I use to execute a javascript statement

I am trying to set a dropdown value using javascript in selenium IDE, but not able to figure out which selenium command to use.
Manas
  • 71
  • 1
  • 2
  • 7
4
votes
1 answer

How to use Selenium IDE to verify text present on XML page?

This previously asked question's answer was to use a plugin but that plugin is no longer maintained or even available. Without using a plugin, how do you verify text present on an XML page? For example, how do you verify that the URL for a test page…
Joe Golton
  • 612
  • 6
  • 12
4
votes
4 answers

Selenium IDE with chosen select elements

I'm trying to test a registration form with Selenium IDE, but am having trouble with select elements from the Chosen library: http://harvesthq.github.io/chosen/ I wonder if you can help me with the commands to select an option (could be any option…
MikkoP
  • 636
  • 1
  • 7
  • 17
4
votes
1 answer

How to export to webdriver code in Selenium IDE with Javascript

I'm using Selenium 2.0 IDE in Firefox to record my test cases. I have written some backing JavaScript to help with making the program a bit more dynamic. The problem I am having is that whenever I try to export to C# or Java Webdriver code in the…
FatAdama
  • 91
  • 2
  • 11
4
votes
4 answers

Selenium WebDriver Recorder for PageObject pattern

I know there are the Selenium IDE and the Selenium Builder as a Firefox plugin to record actions and export them e.g. as C#-Code. But is there also a tool which helps you with creating Selenium (2) WebDriver Test-Code following the PageObject…
10ff
  • 813
  • 4
  • 16
  • 31
4
votes
1 answer

selenium ide loop through array variables

in selenium ide, i have built a test case, in which a array variable stores the values. i have used while loop to print those array variables. here i have used "getEval | myarray[0]" to print the first value which is 'postgresql'. but the value is…
MAHI
  • 9,263
  • 11
  • 36
  • 47
4
votes
2 answers

Running Selenium tests in Jenkins

I have recorded some simple selenium tests by Selenium IDE. Now I want to run those tests in Jenkins. Which plugin to Jenkins do I need to do that? And how to run the tests step by step? Help is appreciated.
user2075878
  • 41
  • 1
  • 3
4
votes
1 answer

Selenium IDE for Firefox Ctrl-Tab

I'm attempting to automate some settings in multiple forms from a list that I open into their own tabs. The easiest way that I can prep the pages prior to running the script is to have them all open . I intend to have selenium run through the…
michael Reid
  • 209
  • 1
  • 3
  • 15
4
votes
5 answers

Close a newly opened tab or window in Selenium IDE

Using Selenium IDE with Windows7 and Firefox, an automatic click on a link may produce either a new tab or a new window. close() closes the original window or tab, not the new one. Maybe if I had the ID of the newly created one I could select it…
Stig
  • 61
  • 1
  • 1
  • 2
4
votes
3 answers

Is it possible to export Selenium IDE test cases as Java/ TestNG/ WebDriver?

In Selenium IDE 1.9.0 there are options to export testcases as Java / JUnit4 / Webdriver and Java / TestNG / Remote Control (along with many more options). I want to know is there any way to export the test case as Java / TestNG /Webdriver? If not…
some_other_guy
  • 3,364
  • 4
  • 37
  • 55
4
votes
2 answers

Selenium IDE - Can I select a row based on column content to verify other columns?

I am testing an application using Selenium IDE. There is a table with unstable row ordering - which means the elements I need to verify are in different rows on each test run. I'd like to use text known to be in the first column to find the row; and…
Dawie Strauss
  • 3,706
  • 3
  • 23
  • 26