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

Selenium - wait for report generation

Part of what I am trying to automate are: Go to : this Pick "25" from the Page Size dropdown list (a required selection for generating the report). Click the View Report button. Wait for the report to be produced. Click the Save/Export button and…
MooMooCoding
  • 319
  • 1
  • 5
  • 15
0
votes
1 answer

Why "clickAt" does not work on Vaadin tables?

I want to test my Vaadin (v7.6.6) tables. But when I use Selenium IDE (2.9.1) in Firefox (47.0), a clickAt event on a table entry does not working (when you click on an entry, the color should change). My command reads as follows: ClickAt |…
0
votes
2 answers

Need to select em in Selenium

I am using Selenium IDE in Chrome. I have trouble as it's Ext JS, so certain class names are generated. I also might be having trouble due to the class name "x-list-body"? I want to click on "This person here yes", like this: Click:…
0
votes
2 answers

check if text contained in a font tag

Im using selenium in python in order to check if a text between font tags in contained and getting the tag tbody back if it is. the html code: …
0
votes
0 answers

Error during using Selblocks in Selenium IDE

I have a problem with Selblocks extension to Selenium IDE. I've prepare XML file:
0
votes
1 answer

How would you verify that a certain css element on a page is a certain image with selenium

I have a page that I want to check with selenium that uses a certain background image for one element. I want to ensure that this image still exists on the page connected to the element. How would I do this with selenium. If this changes anything I…
chromedude
  • 4,246
  • 16
  • 65
  • 96
0
votes
1 answer

Write a .csv file with a selenium ide plugin

I tried to write a SeleniumIde Plugin that allows me to write some values in a .csv file. So, I created this js code to create a temp blob file that I can save: var blob = new Blob([""], {type: 'text/csv'}); if(window.navigator.msSaveOrOpenBlob) { …
cpiock
  • 1,275
  • 2
  • 17
  • 44
0
votes
1 answer

Using Selenium IDE to act on a Popup

I have an application that still uses popup windows over Modals, and we need to test the behavior of some of the popups. In my current stage of research it appears the failure occurs on a waitForPopup call. To confirm this, I made a basic HTML page…
Cameron Kilgore
  • 383
  • 7
  • 25
0
votes
6 answers

Selenium: Exporting test results

When running test cases in Selenium IDE I see that each step result is logged in the Log tab. Example: # [info] Executing: |store | //html/body/div[3]/table/tbody/tr/td[3]/a/img | | # [info] Executing: |store | | | # [info] Executing: |verifyText |…
Panacea
  • 247
  • 3
  • 7
  • 14
0
votes
1 answer

Locater strategy give two results in selenium ide

For all the checkboxes and radio buttons i create a locater builder: LocatorBuilders.add('radio', function(e) { var name = e.parentNode.parentNode.getAttribute('name'); var value = name + '_' + e.parentElement.getAttribute('value'); …
Janp95
  • 534
  • 8
  • 27
0
votes
1 answer

AssertText between an input value and stored variable text in Selenium IDE

Having trouble with returning the text from an attr node for the purpose of using in a AssertText Selenium IDE command. Command: AssertText Target: //input[@id='myInputTextBoxID']/@value Value: ${myStoredSeleniumVal} The result is [error] Element…
redevill
  • 341
  • 1
  • 3
  • 9
0
votes
2 answers

Selenium: how to autorefresh when the page is avaiable

I created a little test of selenium in order to buy a pair of shoes in various sites in the exact moment when they are released, I would like that my test was able to refresh over and over the page until the shoes becomes available, so that I should…
0
votes
1 answer

Selenium - error in run test by testRunner

Hi have problem i create test when i run it from selenium IDE everything is ok, test be passed. When i run my test by selenium testRunner the page was opened but any command eg. clickandwait cannot run in log error "Illegal operation on…
Adrian
  • 35
  • 1
  • 2
  • 7
0
votes
1 answer

Selenium test redirect

I'm using the Selenium IDE to create some test scenario's. I want to create a scenario where a user tries to visit a certain url without logging in. But the webpage should redirect the user to the login screen instead, since the user needs to login…
Peter Boomsma
  • 8,851
  • 16
  • 93
  • 185
0
votes
1 answer

Call JavaScript function from Selenium Web IDE

I've this global function in my site function formatDate(_date) { return _date.getFullYear() + '/' + (_date.getMonth() + 1) + '/' + _date.getDate(); } When I try to use it in the IDE with the following command
vcRobe
  • 1,671
  • 3
  • 17
  • 35
1 2 3
99
100
type