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
1 answer

How to Automate Mouse scrolling event in Selenium IDE

I am trying to capture/automate mouse scrolling event in selenium IDE. Like in Facebook friend list page, we have to scroll to the end to list all friends. I want to automate that functionality using Selenium IDE . What i have done : with my…
John
  • 700
  • 3
  • 17
  • 30
6
votes
3 answers

Selenium click on link

I'm using Selenium's IDE in FireFox to do some testing, and I want Selenium to click the second link (Text2). Any idea how I do that? Unfortunately I don't have access to the HTML and can't modify it. The record function doesn't seem to register the…
khalid13
  • 2,767
  • 2
  • 30
  • 48
5
votes
1 answer

Script to upload a file,in selenium IDE

Script to upload a file,in selenium IDE or How to automate uploading a file using selenium
user1211231
  • 49
  • 1
  • 4
5
votes
2 answers

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, http://192.168.132.105:8080/, ] on session null 10:56:25,005 INFO …
5
votes
1 answer

How to check if a style has been applied in Selenium IDE

I want to check if a particular style has been applied to an element. Preferably using the css selector. EG: ...
some content
... How do I test that display is block…
SystemicPlural
  • 5,629
  • 9
  • 49
  • 74
5
votes
2 answers

How to use Selenium to store values between tests

Selenium has the ability to temporarily store data items and then later retrieve them in subsequent tests, e.g. storeText | @id='ctl00_ContentPlaceHolder1_FormView1' | someValue This works well within a single test and also between tests in the…
David Clarke
  • 12,888
  • 9
  • 86
  • 116
5
votes
3 answers

Selenium: Stored variable is not considered across test cases while executing test suite from command prompt

I have a test suite with 3 test cases, out of which first test case has all the variables required in the other 2 test cases(something like its a dataset for the test suite) All this while i was executing testsuites in selenium IDE (Manually loading…
anil
  • 101
  • 1
  • 5
5
votes
4 answers

How to use Selenium IDE testing tool?

I am a beginner to testing and I have to use Selenium IDE in my project. Can anyone help me in gaining the starting stuff, links containing detailed demo on Selenium, and how to run test cases using Selenium IDE tool?
Radhika
  • 59
  • 1
  • 1
  • 3
5
votes
2 answers

How to setup Selenium RC to test any website on the internet?

I'm new in using Selenium. Selenium IDE is a user-friendly firefox plugin. I have no problem in using it. However, I found that the documentation for other Selenium tools such as Selenium RC and Selenium Core is quite confusing for beginners. It…
5
votes
2 answers

how do I get URL with selenium IDE?

I have look over the internet and didn't find an answer I am trying to store the URL in a variable. Found couple of answer that didn't work ${!url} should bring read-only URL of the site "StoreLocation" should store the URL and that doesn't exist…
Asaf Shazar
  • 1,065
  • 1
  • 11
  • 33
5
votes
0 answers

How to automatically add an unique data attribute to all elements in React?

I'm testing my React application using Selenium IDE and want to add an unique ID ("data-testid" for example) to all elements so I'd be able to select them easily. So far I encountered libraries which accomplish that by adding some code…
5
votes
2 answers

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 extensions (user-extensions.js) in Selenium IDE…
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
5
votes
6 answers

Version compatibility of Firefox and the latest Selenium IDE (2.9.1.1-signed)

I visited https://addons.mozilla.org/en-US/firefox/addon/selenium-ide/ to install the latest Selenium IDE (v 2.9.1) in Firefox. My Firefox version is 54 (64-bit) OS: Windows 10 Pro 64-bit (10.0, Build 14393) But unfortunately "Add to Firefox" button…
Ripon Al Wasim
  • 36,924
  • 42
  • 155
  • 176
5
votes
2 answers

Using Selenium-IDE with a rich Javascript application?

Problem At my workplace, we're trying to find the best way to create automated-tests for an almost wholly javascript-driven intranet application. Right now we're stuck trying to find a good tradeoff between: Application code in reusable and…
Darien
  • 3,482
  • 19
  • 35
5
votes
4 answers

How To Handle React Select Component with Selenium IDE?

I have problem with Selenium IDE location element This is the link : https://jedwatson.github.io/react-select/ I success with this command: Command: sendKeys Target: css=div.Select-control input Value: Victoria${KEY_ENTER} But I don't know to…
RR31
  • 71
  • 1
  • 1
  • 4