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

Selenium IDE - Refresh until element is present

I have to wait an uncertain amount of time for a task to complete & a new one to be created before I can continue with my script. So I have stuck in a very long pause before I refresh and then check to see if the link is available. e.g. |pause |…
autojay
  • 17
  • 6
0
votes
1 answer

What is the purpose of "typeAndWait" command in Selenium IDE?

I am just thinking about command typeAndWait in Selenium, because I cant figure out any real purpose of it. In what situation you type in some input and then the page immedeately starts reloading? I can imagine AJAX, but in this case the page…
Ellrohir
  • 1,017
  • 1
  • 14
  • 32
0
votes
1 answer

Selenium IDE generate code not using WebDriverWait.Until

When generating NUnit code from selenium ide, wait commands like clickAndWait generate an awkward pattern using a loop. Wouldn't it be better to use a WebDriverWait.until? Or am I getting something wrong? UPDATE: Sorry, wrote from memory, the code i…
SilverXXX
  • 31
  • 4
0
votes
1 answer

How to fire mouseover event with specific clientX and clientY parameter values in Selenium IDE?

I am trying to write a test that enters some text into a Froala JS editor instance, in Selenium IDE 2.9.1 (Firefox 45). I'm not able to determine any way to specify the clientX and clientY parameters to this event, which apparently Froala code is…
Jeff Evans
  • 1,257
  • 1
  • 15
  • 31
0
votes
0 answers

"can't access dead object" error selenium IDE

So before someone suggests there are already plans to migrate this IDE project to Webdriver, but this will not happen for a while. So for the time being I am forced to maintain these IDE scripts. We are rolling out a new UI on our page and I was…
Buster
  • 685
  • 1
  • 5
  • 28
0
votes
1 answer

How can i verify if any text is present in text field in selenium IDE

I want to verify if text field is empty or not. I was using verifyEval command but its throwing an exception. How can i resolve that or is there any other way to do that?
dave
  • 5
  • 1
  • 2
0
votes
1 answer

Selenium: Cannot access a div in a web page

I would like to automate click on a link with selenium in a web page. The problem I am facing is that Selenium doesn't recognize all elements included in a div. I've tried to locate it with id, cssSelector and even with Xpath it's not working. I've…
Bek
  • 261
  • 3
  • 11
0
votes
2 answers

Selenium IDE - Test if error pop-up does NOT appear

In my Vaadin web application tested by Selenium IDE (not Vaadin Testbench - I am aware of it, but I dont wanna use it) I want to verify, that error message pop-up was NOT triggered => so the test can continue running. I have no problem with…
Ellrohir
  • 1,017
  • 1
  • 14
  • 32
0
votes
1 answer

Selenium IDE capturescreen file name

I want to use Selenium IDE to capture screenshots of page every day at midnight. I have created an easy test and scheduled it in the internal IDE scheduler. The problem is with printscreens files names, they are always the same and they are…
dabblyou
  • 11
  • 4
0
votes
2 answers

Unable to locate input box with ends-with keyword- Xpath

Thank you for taking a look. I've been able to work out with starts-with for below source code but for some reason, the ends-with doesn't work
nandesh kalyankar
  • 302
  • 1
  • 5
  • 23
0
votes
3 answers

how to verify text present in placeholder in selenium IDE

I want to verify the text present in placeholder. I have located the element and i am using Assert text command. I've entered the same string in value. On executing it is showing actual value did not match
dave
  • 5
  • 1
  • 2
0
votes
1 answer
0
votes
2 answers

How to return source image value in selenium IDE?

I want to make a script in which i just give the location where image is present and it will return the source of image which can be compared with actual value.
dave
  • 5
  • 1
  • 2
0
votes
3 answers

How can i Check JavascriptExecutor in loop?

I want to exit loop if the string give an error, I cant check if it's null. The loop take 2 scripts and take all the cells, in the end the compiler give an error. How i can exit before calculating the last string(the error time) ? Thanks String…
0
votes
2 answers

Cannot select a button with Selenium IDE

I am trying to test a web based application recording a test in Selenium IDE and have the following problem. One of the fields (Title eg Mr, Mrs, etc.) requires the user to click a button that opens a new window with a List of Values. When I click…
1 2 3
99
100