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
14
votes
6 answers

How to get actual JavaScript value in onclick from webbrowser control?

I'm looking for a way to get the JavaScript code defined inside of onclick. I'm using .NET 2.0 C# Visual Studio 2005. Example: click here My goal is to get the string…
Meow
  • 18,371
  • 52
  • 136
  • 180
14
votes
6 answers

Selenium click event does not trigger angularjs ng-click

I have this page where there is a textbox and there is save button associated with each text box. I need to click on the save button so that it will save the value in text box. It is working manually and using selenium. But when running through…
manutd
  • 291
  • 1
  • 5
  • 18
13
votes
9 answers

Manual input from user while running selenium IDE script

can user is able to give manual input while running selenium IDE script? For ex. If there is name field then can we open input box everytime script runs so that user can give his input for name field? Let me know whether it is possible or not.. If…
Rohit Ware
  • 1,982
  • 1
  • 13
  • 29
13
votes
4 answers

How do you focus on new windows with selenium ide?

I am trying to use selenium ide to duplicate an action. The action is clicking on a link that open a new window. How do you make selenium ide focus on the new window instead of the other one? It has not been working for me.
chromedude
  • 4,246
  • 16
  • 65
  • 96
13
votes
3 answers

Capture user input and actions with Selenium WebDriver using Java

Is it possible to capture user input/actions with Selenium WebDriver, in the same way that you can use the Selenium IDE for recording / creating tests? i.e. when the user enters a URL, clicks a link, fills in a text box, clicks a button etc etc. I'd…
Dave
  • 656
  • 2
  • 6
  • 22
12
votes
3 answers

Selenium IDE - Set default speed to slow

Everytime when I run Selenium IDE the speed control is set to "fast" It is possible to set the speed control per default to "slow"?
LaPhi
  • 5,675
  • 21
  • 56
  • 78
12
votes
4 answers

Firefox bug with Selenium - Can't access dead object

I've tried to run my tests with Selenium 2 and Firefox 19. One of this tests causes an error "ERROR: Command execution failure. The error message is: can't access dead object". I'm reading about it, it seems like a bug in newest Firefox's versions.…
discostu
  • 291
  • 1
  • 5
  • 15
12
votes
2 answers

Selenium IDE: How to Pass Variables

I have 3 different accounts in a website that I want to login and print a report every single day. I've done a Selenium IDE recording that allows me to login and print the report, however, every day I have to change the variable 3 times (for the 3…
donald
  • 23,587
  • 42
  • 142
  • 223
11
votes
2 answers

Selenium IDE - Upload file into field

I'm creating a testing suite to automate some parts of data input on my web application. I have a page where I can click on a button to upload a document to the application. It looks something like this: Once the Add New Attachment button is…
FlameDra
  • 1,807
  • 7
  • 30
  • 47
11
votes
5 answers

selenium webdriver upload file

I am new to selenium, I have a script that uploads a file to a server. In the ide version sort of speak it uploads the file, but when I export test case as python 2 /unittest / webdriver it doesn't upload it.. It doesn't give me any errors, just…
user2782827
  • 121
  • 1
  • 1
  • 5
10
votes
3 answers

Export test as python from Selenium IDE

I made several tests in Selenium IDE and saved it as a test suite in the HTML format which works fine for importing back into selenium IDE. Now however I would like to expand these tests using python and when I click export test suite and choose…
BillPull
  • 6,853
  • 15
  • 60
  • 99
10
votes
1 answer

How to use If command in the selenium ide?

I was searching the web for a long time. I'm trying to put if and else statements into this selenium IDE. The program itself doesn't provide any parameters, hints, or help. I saw a lot of results online where it's just java code, however I don't see…
sergiy
  • 161
  • 1
  • 2
  • 11
10
votes
8 answers

onchange event does not get fired on selenium type command

I am typing some value, on change do a total. But somehow, this event is not getting fired with selenium type command. I also tried typeKey and typeAt ..But no success. Any workaround for this ?
Jigar Shah
  • 2,576
  • 6
  • 31
  • 53
10
votes
6 answers

Get element with jquery and selenium IDE 1.0.8

I'm trying to get element with jquery and Selenium IDe 1.0.8. storeValue $('#result').find('img').filter('[alt="NameOfPhoto"]').eq(0) And in log I get [error] Element…
user278618
  • 19,306
  • 42
  • 126
  • 196
10
votes
4 answers

How can I click on a div button with selenium webdriver?

I have this button:-

Create

But I tried with find element by…
Oscar Ubillús
  • 150
  • 1
  • 2
  • 13