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

Selenium-ide, File upload not working for react application

Recording the test case using Selenium IDE for react application, but unable to Upload a file from selenium-ide. React-dropzone package is used for file upload. I tried with command "type" and "send keys" but that didn't work. selenium-ide:…
4
votes
0 answers

Selenium IDE - How to use regex with command "assert text"?

I try to check if a certain element contains the text with the value 40,00 € or 40,00 Euro. Attempt: regexp:40,00.+ Output: verifyText on css=.price:nth-child(2) with value regexp:40,00 Failed: Actual value "40,00 €" did not match…
Black
  • 18,150
  • 39
  • 158
  • 271
4
votes
0 answers

Variable not incremented in latest Selenium IDE

I attempting to increment a variable in the latest Selenium IDE however the variable does not get updated. Did something change in the latest versions? store | 1 | i store | javascript{storedVars.i++;}| echo | ${i} Log Running 'Test increment'…
Hector De Jesus
  • 101
  • 1
  • 8
4
votes
0 answers

found ' Failed: Implicit Wait timed out after 30000ms' this error after play the testcase

My problem is that my code found a timed out error. This is my code: { "id": "7cff5f0f-49a0-4099-a4b4-6e50d5f38a1c", "comment": "", "command": "click", "target": "name=OrderSearch[order_id]", "targets": [ ["name=OrderSearch[order_id]",…
en keval
  • 51
  • 5
4
votes
4 answers

using Selenium 2 / Web Driver with C#

I have recently been looking at using Selenium 2 / webdriver for some automated web tests. The API looks great. However is it possible to record a test through the selenium-IDE and generate C# code for webdriver. I have found some Java…
andyJ
  • 1,040
  • 5
  • 19
  • 26
4
votes
1 answer

Click an area of a webpage given an X Y value

I am trying to click a pin I have on my application which uses Bing Maps V8. The pins which are placed on to the map do not appear in the DOM elements as they are directly rendered onto the Map by Bing Maps engine. I was wondering is there a way I…
4
votes
6 answers

Is there a way to make actions optional in Selenium IDE?

This is a bit of a newbie question, but... is there a way to make actions optional in Selenium IDE? I'll provide a use case. In the app I'm testing, users see a "hey, you're agreeing to the ToS by logging on"-type modal window at the beginning of…
Pops
  • 30,199
  • 37
  • 136
  • 151
4
votes
3 answers

how to get already opened IE browser handle in selenium?

I have one already opened IE browser , with some url. After this, I Run below code which will open another IE browser. however it gives me only one window handle in below code. Is it possible to get previously opened IE browser handle ? …
4
votes
4 answers

What is the difference between Selenium IDE, Selenium RC and Selenium WebDriver?

What is the difference between Selenium IDE, Selenium RC and Selenium WebDriver; and in what kind of project can we use each one? Any suggestion will be really appreciated.
Zakaria Shahed
  • 2,589
  • 6
  • 23
  • 52
4
votes
2 answers

How to install Selenium IDE in Mozilla Firefox

I tried to install Selenium IDE in Firefox but unable to install. Please help me. My Firefox version: 47.0.2 while install IDE button is disabled please help me.
Mohamed
  • 73
  • 3
4
votes
3 answers

jmeter + Selenium iDE

I'm unable to active Redline recording button in SeleniumIDE,I have recorded my steps then clicked on Redline recording button & run the recorded steps but in this time Redline recording button is showing as inactive & after running the steps again…
Farzana Mim
  • 55
  • 1
  • 5
4
votes
3 answers

Selenium 2.53 or 2.48 not working in Firefox 48.0

I am getting an error in Firefox 48.0 in new the update from firefox 47 Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output: 066 addons.xpi DEBUG Updating database with changes to installed add-ons My…
Tehsil
  • 131
  • 1
  • 9
4
votes
1 answer

Selenium IDE - How to wait for options by name in a select to be populated?

I am working with Selenium IDE and on my webapp I have a select of the type: I need to wait for an…
danalif
  • 117
  • 1
  • 8
4
votes
1 answer

How can i get all list items with Selenium Webdriver?

i am new with Selenium and try to get all items in list. The code is:
  • Aw
  • Ax
  • Ay
I want to get all items and check all of them starts with "A" Thanks for help.
sametbilgi
  • 582
  • 2
  • 7
  • 29
4
votes
3 answers

How do I open a new private window in Selenium IDE and switch between windows?

I'm trying to make automated tests for a site, using Selenium IDE (not Selenium Server, RC, 2.0, and WebDriver). I want to be logged in with user 1 in Firefox window 1 and open a Firefox private window to sign in with user 2. I need this because the…
Iunielle
  • 41
  • 1
  • 1
  • 4