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
8
votes
9 answers

Selenium IDE:Opening in new tab and shift focus to new tab not working

i have stuck in one point in selenium ide the scenario is like this Login----- go to dashboard page--------- mouse over any menu on the top navigational bar---- on mouseover sub menu will appear as drop down-- now click any link from the drop…
John
  • 700
  • 3
  • 17
  • 30
7
votes
2 answers

How do you upload a file using Selenium IDE?

This used to work in the past, but recently I've been trying to upload a file using Selenium IDE, and now I'm getting this error: [error] Unexpected Exception: code -> 1000, INDEX_SIZE_ERR -> 1, DOMSTRING_SIZE_ERR -> 2, HIERARCHY_REQUEST_ERR -> 3,…
ngtran
  • 73
  • 1
  • 1
  • 4
7
votes
3 answers

Selenium IDE stuck on "Preparing to run your test"

I have a test in Selenium IDE which looks like this. Say that our base URL is https://stackoverflow.com. open /questions pause 500 type id=search hello When I run the test, the first two steps are marked in green, but in actuality the browser is…
mic
  • 1,190
  • 1
  • 17
  • 29
7
votes
3 answers

How to wait for a page redirect in Selenium?

I am trying to perform a relatively simple task: to wait until a page redirect is complete. Just seen another answered question on the subject, where an advice is to wait for a particular text on the latter page to appear (IF I've got it right). If…
BreakPhreak
  • 10,940
  • 26
  • 72
  • 108
7
votes
3 answers

Call to eval() blocked by CSP with Selenium IDE

I have a selenium test developed in Selenium IDE. I have a step in this suite that should type a value in a text field. It fails at that step giving the following error: 18. click on id=firstName Failed:11:12:59 call to eval() blocked by CSP
cristid9
  • 1,070
  • 1
  • 17
  • 37
7
votes
2 answers

Selenium IDE - exporting test scripts

I'm trying to export my test automation created in Selenium IDE, but I can't find the option to export. I have a few test scenarios where the tests are the same but I need to make a copy of an existing test and swap some IDs for it to work. I can…
FlameDra
  • 1,807
  • 7
  • 30
  • 47
7
votes
1 answer

Can't see File/Edit/Actions menu bar on Firefox Selenium IDE

Hi, I'm just starting to learn Selenium & was trying to explore IDE for Firefox. I'm using Firefox 59.0.2 & Selenium IDE 3.0.2. The IDE window, doesn't show me any menu bar options (File/Edit/..). I was looking forward to export the code in Java.…
Ajay
  • 75
  • 1
  • 4
7
votes
2 answers

How to export Selenium Test Suite/Case as C#

In the older version of the Selenium IDE you used to be able to export a test case as different languages, however, I am not seeing that option on the newer IDE... Is it possible to export the test suite/case as C# in the newer IDE?
Jeffrey L. Roberts
  • 2,844
  • 5
  • 34
  • 69
7
votes
3 answers

How to do a regexp in a waitForPopUp Command in Selenium IDE?

I have popups with this name structure: static_dynamic_static The dynamic part changes each time I log in so my test cases fail each time. I thought about solving the problem with a regular expression like this: Command: waitForPopUp Target:…
Niko Lang
  • 549
  • 1
  • 5
  • 23
7
votes
2 answers

How to export Selenium IDE Test Suite in Python?

I know how to export Test case in python from Selenium IDE. But I wonder Is it possible to export Test Suite in python?
faisal
  • 81
  • 1
  • 6
7
votes
3 answers

Selenium IDE - How to check that an element is (CSS) visible?

Example 1: Checking that a Twitter Bootstrap modal has opened. The modal already exists on the page but is hidden with CSS until the modal is opened. So how do I verify that the modal actually opened? Example 2: Checking that a user error message…
BadHorsie
  • 14,135
  • 30
  • 117
  • 191
7
votes
5 answers

Xpath to determine checkbox "checked" attribute in Selenium IDE

How to determine if a checkbox is check or not through xpath Currently I am trying : //input[@type='checkbox' and @checked='true')] I have multiple checkboxes with same ids so I have to select the next checkbox which is not selected/checked.…
sakhunzai
  • 13,900
  • 23
  • 98
  • 159
6
votes
4 answers

Selenium Element Not found even if Selenium populates the id

I am using Selenium IDE Firefox plugin to create some test cases. I click the Record button to record the steps. When I am done, I stop the recording and would run the test cases to see how things go. In this one particular element in an HTML…
Monte Chan
  • 1,193
  • 4
  • 20
  • 42
6
votes
3 answers

What is the default keyboard shortcut for opening Selenium IDE from within Firefox

I'm sure this is documented somewhere obvious, but I just can't find it. I'm currently switching back and forth between Firefox and Selenium using a toolbar button, but it's annoyingly slow to keep having to use the mouse.
Matt Gibson
  • 14,616
  • 7
  • 47
  • 79
6
votes
2 answers

Selenium Export test cases as PHP-phpunit is missing in my Selenium IDE 1.2.0?

I really in need of converting/exporting my test cases to PHP. But PHP-phpunit formatter in Selenium IDE 1.2.0 is missing. Can you please tell me how can I get it? Its really urgent please.
software
  • 728
  • 6
  • 18
  • 39