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

How to close a chrome browser pop up window?

I am writing a code for Facebook where it takes the URL, ID, Password from a properties file but upon logging in I am hinted with a "Facebook wants to show notifications - Allow - Block" How do I make it so after login it (A.) Presses ESP or ALT+F4…
5
votes
1 answer

convert python selenium to just selenium ide commands

Below I have a python script that is able to perform the following: Find the current date selected Select the next available date If no available date is found within the month, press next to go to next month My question is that I also…
BruceyBandit
  • 3,978
  • 19
  • 72
  • 144
5
votes
4 answers

Upload file with selenium ide to the Dropzone.js

I'm creating selenium ide tests and now I have problem. I can't write test for uploading a file from local disk. My dropzone looks like: http://www.dropzonejs.com/examples/simple.html Can somebody helps me?
mia654321
  • 111
  • 1
  • 6
5
votes
1 answer

On Selenium IDE, how to assert the text value in between tags?

The source code reads:
on
And I want to assert in Selenium IDE that the value in between
and
is "on". I tried to use assertValue and assertAttribute, but got an error with both commands. If I use…
Shirley Zhang
  • 83
  • 1
  • 9
5
votes
1 answer

Selenium IDE: Clearing a text field

I need to know how to clear a text field in Selenium IDE. I have tried the sendKeys command with no luck.
David
  • 83
  • 1
  • 1
  • 5
5
votes
1 answer

How to wait until element present?

I want my Selenium IDE case test to wait 10 secs for the element id = "successed" to appear, and fail the test if it won't happen within 10 secs This is what I wrote; Selenium.prototype.doWaitForElementIdToAppear = function(){ …
Artur Stary
  • 724
  • 2
  • 13
  • 30
5
votes
2 answers

How to convert Selenese (html) to Python programmatically?

How would I convert test cases made by Selenium IDE to Python without exporting every test case by hand? Is there any command line converter for that job? In the end I want to use Selenium RC and Pythons build in unittest to test my websites. Thanks…
dan
  • 51
  • 1
  • 3
5
votes
4 answers

NS_ERROR_XPC_SECURITY_MANAGER_VETO Error In FF 30.0 Using Selenium IDE 2.5.0 To Populate Page

When running a selenium IDE script to autofill a form, I receive the following: [error] There was an unexpected Alert! [Javascript Error :MY-SUPER-TOP-SECRET-URL line 37 Error: NS_ERROR_XPC_SECURITY_MANAGER_VETO: ] When I checked line 37, it is a…
cdaringe
  • 1,274
  • 2
  • 15
  • 33
5
votes
2 answers

How can I compare two stored texts in Selenium IDE?

How can I compare two stored texts and if they are equal to echo some result?
Stanimir Yakimov
  • 864
  • 3
  • 14
  • 31
5
votes
2 answers

How can we handle Upload File component using Selenium IDE?

Can anyone please provide idea or site reference for handling File Upload Process using Selenium IDE? Rest of the actions are recording thru' Selenium IDE but this upload process is alone giving trouble... Thanks Karunagara Pandi
Karunagara Pandi
  • 634
  • 7
  • 16
  • 27
5
votes
3 answers

How to click Image icon using selenium webdriver

I am trying to click the image icon via xPath but when i run the code the link present on image icon is not opening. could you please help me in resolving this issue. The Code i used to click the mail icon : …
user1564024
  • 81
  • 1
  • 1
  • 9
5
votes
1 answer

How do I ask Selenium IDE to check a HTTP Status Code (e.g. 2XX, 404, 500)

How do I ask Selenium IDE to test HTTP Status codes after loading a page? I know this is possible (but awkward) in regular Selenium, how about in Selenium-IDE? Is there a plugin or other way to get something like: open…
Bryce
  • 8,313
  • 6
  • 55
  • 73
5
votes
4 answers

Workaround for Selenium IDE 2.0.0 on Firefox 22

On Firefox 21, S-IDE worked fine. Just upgraded to the officially released FF22, and any test I try to run errors out: [error] Unexpected Exception: fileName -> chrome://selenium-ide/content/selenium-core/scripts/htmlutils.js, lineNumber -> 309,…
Kev
  • 15,899
  • 15
  • 79
  • 112
5
votes
3 answers

how to verify style attribute in Selenium IDE

I have the following code:
user2404845
  • 51
  • 1
  • 3
5
votes
6 answers

Receiving org.openqa.selenium.WebDriverException: Cannot find firefox binary in PATH running tests in Selenium IDE with Webdriver playback

I keep on getting the following errors when I attempt to run tests in Selenium IDE with Webdriver playback. Caused by: org.openqa.selenium.WebDriverException: Cannot find firefox binary in PATH. Make sure firefox is installed. OS appears to be:…
user2320600
  • 51
  • 1
  • 1
  • 3