The runScript command in selenium is really useful, and I'm using it to total values in a table and then store the value like this <tr> <td>runScript</td> <td>var cumulative = 0.0; $('table.quote-review-group-...
I am novice to automation testing and have started using Selenium IDE as the choice for automation. I just want to know if there is any way to handle java-script alerts using IDE. Take a scenario: I am clicking on "Delete" button and there...
How do I use doWaitForCondition in a Selenium user extension? this.doWaitForCondition() returns a function, but when I run it it returns immediately....
I am trying to customize the behavior of Selenium's click command, (via user-extentions.js), by intercepting calls to doClick(locator). Basically I need to delay click actions whenever our application's "busy indicator" is being displ...
Problem At my workplace, we're trying to find the best way to create automated-tests for an almost wholly javascript-driven intranet application. Right now we're stuck trying to find a good tradeoff between: Application code in reusable an...
I'm using Selenium 2.0 IDE in Firefox to record my test cases. I have written some backing JavaScript to help with making the program a bit more dynamic. The problem I am having is that whenever I try to export to C# or Java Webdriver code in t...
I have an object var object= {} I put some data in the object and then I want to print it like this document.write(object.term); the term is a variable that changes depending on different situations. When I try printing this it comes up with un...
Is there a way to run the same Selenium test case on many pages without specifically defining a list of pages? Say, for example, I have a UIMap pageset defined like this: var map = new UIMap(); map.addPageset({ name: 'pages', descri...
I am trying to create a code that automatically select one of the checkbox among five check boxes. What should I do for it? Is it possible to do so in Selenium IDE. If yes, please share code with me. Is there need to change/ edit in user extensions.j...
I have written a test using selenium IDE (with flow control extensions) that iterates through elements within 2 drop-down lists (using 2 loops) and populates a data entry form according to the elements selected in the drop-down lists. Esstially the...
©2020 All rights reserved.