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

How to store the content/value of xpath?

Assume xpath as below: xpath : //div[@id='cslGridViewPanelControl']/div/div[2]/div/table/tbody/tr/td[2]/table/tbody/tr/td/table/tbody/tr/td/div Last div element contains 'Displaying 1 to 30 of 145300'. I need to store 'Displaying 1 to 30 of…
Jackie James
  • 785
  • 8
  • 15
  • 28
4
votes
1 answer

Selenium - Permission denied to get property HTMLDocument.readyState

We are doing some automation using Selenium (for Firefox) and recorded a script to playback. This was working fine until the provider roled out some new changes. Now we get the following error, not sure what this means... [info] Executing:…
lud0h
  • 2,370
  • 6
  • 33
  • 41
3
votes
1 answer

In selenium automation mouse arrow movement is it possible for a test case

I am new to selenium .. I want to know how the mouse arrow movement can be shown to the user.I mean to say we automate certain things.. I want to know how we can get the mouse arrow movement to the user who is seeing the automation going on in…
sai sindhu
  • 1,155
  • 5
  • 20
  • 30
3
votes
2 answers

Saving Selenium Test Suite

I'm trying to save several test cases as test suite. When I open a saved file it has only one test case in it, no mater how I save my test cases. It is a bug? Am I doing something wrong? Or I don't understand the purpose of Suite in Selenium IDE?…
Cosigin
  • 83
  • 2
  • 5
3
votes
1 answer

Selenium: How to copy values from field1 to field2?

We are recording a test using Selenium IDE in Firefox. We need to copy a value from a read-only field to an input field. Is there a direct way I can refer the field or do I have to store and use it. An example would be great. Thanks.
lud0h
  • 2,370
  • 6
  • 33
  • 41
3
votes
4 answers

How to get text of single input tag

I am using a input tag as follows:
Yogesh
  • 31
  • 1
  • 1
  • 3
3
votes
1 answer

Does selenium IDE have a way to handle dynamic elements?

I was using selenium IDE to automate testing on a web page that has dynamic xpath in it. I noticed selenium IDE was capturing the xpath fine the first time playing it. Then after closing the browser and opening, of course the xpath has changed, but…
3
votes
2 answers

Selenium Not Able to Find Elements By ClassName

When I use Selenium's Find element by class it is able to find the element, I even tried replacing space (after e and r or v and I) with…
3
votes
1 answer

Can I use Selenium IDE and have it use XPath instead of ID by default?

I have a situation where the IDs of all elements are unique GUIDs, regenerated on each page load. So I can't use IDs, although Selenium IDE defaults to IDs for obvious reasons. My workaround is to record with Selenium IDE, then go back and manually…
AmbroseChapel
  • 11,957
  • 7
  • 46
  • 68
3
votes
0 answers

How to take screenshot using command in Selenium IDE [New Version]

This question was already asked but the version of Selenium IDE is changed now. Previously there was command but screenshot command is removed in new Selenium IDE. Please help me if anyone knows any workaround.
Akki
  • 1,718
  • 2
  • 29
  • 53
3
votes
1 answer

Save a test suite as a single file in Selenium

Is it possible to save a test suite as a single file as opposed to a group of files when using Selenium? Normally the test suite file is just a list of links to the test case files; I'm wondering if it is possible to store the test cases within the…
Peter
  • 49
  • 2
3
votes
1 answer

selenium IDE trying to get margin-bottom value

I'm trying to get the value of the bottom margin of an element on my page. The page has a select box that allows the visitor to adjust the botttom margin of an element. I want to create a script that changes the value and then checks that the…
Alan
  • 31
  • 2
3
votes
1 answer

Selenium set speed execution test

We use Selenium IDE to record the test. In the recorder we can change the speed execution and our tests pass. We should set the speed to SLOW. I use ANT for launch the HTML Suite test. The problem is that we have to set the execution speed of the…
Tommaso Taruffi
  • 8,932
  • 9
  • 44
  • 56
3
votes
1 answer

How can I use setExperimentalOption through Options using FirefoxDriver in Selenium IDE?

ChromeOptions options = new ChromeOptions(); options.setExperimentalOption("useAutomationExtension", false); options.setExperimentalOption("excludeSwitches", Collections.singletonList("enable-automation")); I want to log in to Google using Selenium…
3
votes
1 answer

Selenium IDE: If variable contains some text

In the Selenium IDE Firefox add-on I'm trying to create an If statement that will execute a one way if my variable contains a certain text and will execute another way if it contains other text. The issue I'm having is I need it to check just one or…
Aaron
  • 33
  • 1
  • 3