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

Selenium IDE gotoIF comparing vchar strings

I have tried the following gotoIf "${oneoff}"=="Jeff Della Rosa" gotoIf ${oneoff}=="Jeff Della Rosa" gotoIf ${oneoff}=={"Jeff Della Rosa"} <-- not sure why, just trying anything. -------- HERE IS THE WHOLE sequence----------
michael Reid
  • 209
  • 1
  • 3
  • 15
5
votes
4 answers

How to click tag in selenium

Below is my code.Am pasting my entire tag Foot-OM Re-Submit View Here i need to…
cxyz
  • 823
  • 8
  • 19
  • 37
5
votes
2 answers

Is it possible to run HTML test suite from PHPUnit?

I want to measure code coverage of an HTML test suite for selenium. Therefore I want to use PHPUnit in order to execute the suite, because PHPUnit has nice support for code coverage analysis. Therefore: Is it possible to run an HTML test suite from…
Chris
  • 8,031
  • 10
  • 41
  • 67
5
votes
3 answers

Selenium IDE testing all links

I'm trying to use Selenium IDE to test a web app. On one page, there are several links which trigger modal windows. I'd like to test ALL the links on the page to ensure that ALL cause modals to pop up. Each link has a class "modal" so I thought I…
hasan
  • 315
  • 2
  • 14
5
votes
8 answers

Is there a Selenium 2 version of Selenium IDE?

I'm new to Selenium and I'm a bit confused about the version numbers. Selenium 2.0 was released in 2011. I just downloaded the Selenium IDE Firefox extension and it is version 1.7.2. Is there also a 2.0 release of the IDE, or does the 1. x series…
Patrick Kenny
  • 4,515
  • 7
  • 47
  • 76
4
votes
1 answer

Easiest way to alter eBay page content/DOM

Selenium was apparently not designed to allow you modify the DOM of the browser pages, but I occasionally need to insert HTML elements dynamically. In this instance: I am using Firefox with the Selenium IDE to record listing of auctions on eBay, but…
iCollect.it Ltd
  • 92,391
  • 25
  • 181
  • 202
4
votes
2 answers

Addition of two variables in selenium IDE

I have store one value in one variable and second in other, now i want to make addition of those two number.I am not able to do that, I have tried below code but its not working store 6 w …
user1192378
  • 71
  • 1
  • 1
  • 3
4
votes
1 answer

Testing jQuery Drag & Drop and Droppable with Selenium

I have a page that makes use of jQuery Drag & Drop, and I would like to build a relatively robust test suite for this process using Selenium. Looking into Selenium, I've found that it has a Drag & Drop command on a jQuery plugin like: FullCalendar,…
jordan.baucke
  • 4,308
  • 10
  • 54
  • 77
4
votes
3 answers

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!
Gabriel Quesada
  • 163
  • 2
  • 3
  • 9
4
votes
2 answers

JMeter load testing with JUnit from Selenium IDE

I have problem with JMeter not picking up my JUnit test. What I did: got JMeter and extracted created JUnit test through Selenium IDE and exported as JUnit4(WebDriver) try that test runs when executed (in IntelliJ) created JAR of the class…
peter_budo
  • 1,748
  • 4
  • 26
  • 48
4
votes
5 answers

Verify input text element is not empty in Selenium IDE

How can I verify that an input element has any text in it. It is loaded with random text so I can't verify a specific value, but there must be some text in it. I'm using Selenium IDE
Maurizio Pozzobon
  • 3,044
  • 7
  • 34
  • 44
4
votes
3 answers

Selenium IDE - always fail on any 500 error

Is there an easy way to tell Selenium IDE that any action that results in a http 500 response means the test failed? I have tests that are 75 page requests long. Sometimes, I get a crash and burn somewhere in the middle, but the tests come back…
Code Silverback
  • 3,204
  • 5
  • 32
  • 39
4
votes
2 answers

Selenium IDE : how to verify that only specific values are present in a drop down list

I hope someone is able to help me. I am trying to determine whether or not Selenium IDE can verify that only specific values are present in a drop down list, and should anything else appear within the drop down list it is an error. For example,…
Rabbithell
  • 41
  • 1
  • 3
4
votes
3 answers

In Selenium IDE, can Locator use XPath and storedVars

I have a XPath that will select a specific radio button item of my HTML. I would like to enhance my locator to be more dynamic by using a stored variable to represent the text for which my XPath is using to lock on. This is my current setup Command:…
MADCookie
  • 2,596
  • 3
  • 26
  • 46
4
votes
4 answers

Pass variable to Selenium-IDE script

Is it possible for an MSBuild script to pass an argument to the Selenium test runner that can then be used by a Selenium-IDE test script? I was hoping I could do something like... java -jar selenium-server.jar -htmlSuite *firefox…
GoatInTheMachine
  • 3,583
  • 3
  • 25
  • 35