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
6
votes
5 answers

Understanding Selenium IDE vs Selenium RC

What is the difference between Selenium IDE and Selenium RC with its functionality?
Nazmul Hasan
  • 6,840
  • 13
  • 36
  • 37
6
votes
6 answers

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, Selenium.click is not working. The command gets…
A.J
  • 4,929
  • 2
  • 27
  • 36
6
votes
2 answers

Run specific tests within test suite - Selenium Side Runner (IDE)

Is it possible to run a specific test within my selenium side runner test suite? For example, within a test suite, my first test logs me into a website, then the other tests, test specific areas of the website. Each of these tests first inherit the…
dsj
  • 61
  • 2
6
votes
2 answers

Selenium IDE: How to check if an element has a focus?

Is there a built in method for checking that an input text element has a focus ? Well, I didn't find one, so I tried this extension. But, it doesn't work for me either (i.e. the test fails). Any ideas ?
Misha Moroshko
  • 166,356
  • 226
  • 505
  • 746
6
votes
1 answer

unable to create new service geckodriver; selenium standalone server;

I face the same issue as already described with Java, but the answers there dont help me along, I have a selenium Standalone Server. I am using Java version "1.8.0_144" Java(TM) SE Runtime Environment (build 1.8.0_144-b01) Java HotSpot(TM) 64-Bit…
Ralf
  • 61
  • 1
  • 3
6
votes
7 answers

Unable to launch IE browser in selenium webdriver

I have written a sample code to launch IE browser and load google page. public class Sample { public static void main(String[] args) { // TODO Auto-generated method stub …
6
votes
5 answers

How to generate a random number

I have to create a test for homework using Selenium IDE and create a scenario to generate a random number. I'm struggling with what I need to type and what field to type in. What should I type in?: Command Target Value
angel malave
  • 97
  • 1
  • 1
  • 2
6
votes
1 answer

Is automated testing of Open Layers possible?

I am attempting to use selenium to test OpenLayers-2.13.1 functionality. I am having problems with mouse clicks, mouse downs etc.... I found a couple of out-dated posts with similar problems but their resolution didn't help me. Does anyone know of…
John
  • 3,965
  • 21
  • 77
  • 163
6
votes
4 answers

Selenium assert has class

I have an element with a known id. I want to assert or verify that it has a specific class. The HTML of the element is: I want to use the id "SearchList" to locate the element and then verify…
ism
  • 288
  • 1
  • 5
  • 17
6
votes
2 answers

Is it possible to 'chain' multiple test suites from the Selenium IDE

I have a group that has some non-technical people creating tests and test suites using the Selenium IDE. I'd like for that group to be able to work independently, yet after the fact be able to run a series of those suites with minimal button…
oconnellc
  • 85
  • 1
  • 6
6
votes
4 answers

Selenium IDE Base URL and Open commands

What is the use of Base URL is Selenium IDE because even when I enter the wrong URL there or leave it blank, and run the script, it just runs fine. I have this URL, as base URL http://test.info:50/test and in the open command when I use the part…
Abhi
  • 107
  • 2
  • 3
  • 6
6
votes
4 answers

How can I read Variables from data pool with Selenium IDE?

I am using Selenium IDE to test a web based HR/SW system. There is a screen that used to enter vacation for employees. I am having nearly 3000 employee. I built a test case that enter vacations for one employee using variables. How can I repeat the…
osgadallah
  • 145
  • 2
  • 2
  • 8
6
votes
3 answers

Selenium:Webdriver: Is there a listener to capture user actions in the browser session launched by WebDriver?

I am trying to create a basic recording tool using Selenium2/Webdriver and I am aware that Selenium Already provides an IDE, but I want to build a more generic one. More specifically, once I launch the browser using WebDiver API in java, I would…
Rex
  • 91
  • 1
  • 7
6
votes
5 answers

Selenium click doesn't work but mouse does

Can anyone explain why/how in Selenium IDE, for an item I want to click on, the click doesn't work, however using mouseOver, mouseDown, mouseUp and mouseOut on the same Target does work. I have even tried to use multiple of those above,…
dhruveonmars
  • 409
  • 1
  • 11
  • 24
6
votes
4 answers

How to create custom functions in Selenium IDE?

This should be possible according to JavaScript Functions in Selenium IDE HTML Tests: storeEval function(input) {return input.replace('foo', 'bar');} replaceText storeEval …
l0b0
  • 55,365
  • 30
  • 138
  • 223