0
votes
2answers
11 views

Radio button click in Selenium Webdriver

I have write a code for radio button click by using XPath but it is not click on radio button during execution of code. My code is: ...
0
votes
0answers
21 views

Selenium create empty Date object

I've problem with simple method. I wrote something like this: Selenium.prototype.doPutDateToInput = function(locator) { var tmp3 = new Date(); var strDate = tmp3.asString(); ... } Using ...
1
vote
2answers
41 views

How to test the ads displayed on UI, using Selenim WebDriver/RC

How to test the ads which displayed on web page. This ads are injected thorugh some plugins. When i record using IDE, it displays the adds on Firefox browser. But when i run the webdriver selenium ...
0
votes
2answers
44 views

selenium selector - how to check checkboxes?

I don't seem to be able to use click for checkboxes. No error in the console, it shows the click but the checkbox isn't checked. I have tried using both click and check but neither seem to check the ...
0
votes
0answers
23 views

Selenium firefox 21 cannot log.debug when recording, nothing showing up when logging in javascript

I would love to see things on the console but nothing shows up. This is logging in javascript. I have instead used the echo command and that helps for a while but I really need to be able to log and ...
0
votes
1answer
38 views

Need help getting element out of URL in Selenium IDE

Okay gang, this one's been a thorn in my side for far too long. I have the following URL: ...
1
vote
1answer
33 views

Selenium ide - How do I copy and paste a randomly generated name

Would like to know if its possible to copy a randomly generated username and paste into a login field. Most of the StoreValue commands don't apply here as the name is generated new each time, so i ...
1
vote
1answer
35 views

How do you deal with different language web application and Selenium IDE?

The web site that I am testing enables the user to choose a language. And if the language is switched from English to some else language, all the label names of the drop down menus are now different. ...
0
votes
0answers
45 views

Selenium ide generated code does not indicate what frame

I have done several selenium recordings and played back in java and a common issue is that the play back will say find by locator of something and I would get an exception of not found. It was ...
2
votes
1answer
129 views

Selenium IDE: Bind mouseOver() on dynamically generated div

i have a div element which is created via JS on the fly. <div id='menu_item_0'>foo</div> Now my Selenium IDE locator is able to access this element with various selectors, but whatever ...
0
votes
0answers
34 views

How can I make Selenium IDE start and run by clicking on a test case

How can I make Selenium IDE start and run by clicking on a test case? We want to upload all the test cases on our server as links on an HTML page and when a link is clicked, SElenium IDE would open ...
0
votes
1answer
52 views

Selenium IDE: Firing off an Ajax call whenever the play button is pressed

I'd like to fire off an Ajax call whenever the user clicks the play button in Selenium IDE. The jQuery $.ajax function would be even better. Is there a way to do this? After 20 minutes searching ...
2
votes
0answers
34 views

Selenium IDE blocks page content on latest Firefox version

my team and I have been experiencing an odd issue with Selenium IDE and the latest Firefox versions (19, 20) recently. Our Selenium IDE script clicks on a button to open a new page window but the ...
0
votes
1answer
119 views

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, ...
0
votes
0answers
41 views

vba excel internet explorer disable warning https message

when loading a website , i get the following Security warning : do you want to view only the webpage content that was delivered securely. This popup cause my code to go to error , is there a way to ...
0
votes
1answer
58 views

Execute Javascript Command in Selenium to get data from a webpage

<h4>Lotus</h4> What i want is to grab the Lotus Value from the h4 tag , in another post I got the answer using a javascript command as follow: ...
0
votes
0answers
36 views

Selenium IDE click checkbox preceding span

I have the following html code inspected with firebug: <br /> <input id="formPrincipal:filtro_lst_Fam_lia_de_Regras_Nacionais_1" type="checkbox" ...
0
votes
0answers
40 views

Input field is filled, but content is not saved using Selenium IDE

Using Selenium IDE, I'm able to fill an input field (using "type" command), but when I "save" the value, this value is lost. Doing the same by hand, everything works fine. Any hint to solve this ...
0
votes
0answers
26 views

How to get the Event Object of the Click event on Selenium IDE

In the web app the click event object is being used to calculate to get the click position and then ajax call is performed. pos_x = event.pageX ? (event.pageX - bodyImgPos[0]) : (event.offsetX); ...
1
vote
2answers
39 views

how to locate cursors randomly in map

a lot of cursors in the map every time you refresh the map you will get another different cursors with different IDs so i can't use the IDs to test random cursors i want to click at any cursor, ...
0
votes
1answer
114 views

Selenium [error] Unexpected Exception: fileName -> chrome://selenium-ide/…/selenium-api.js, lineNumber -> 2535, columnNumber -> 0

I'm trying to save the text of an element into a variable then get a portion of it with substring and store it in another var to use it to search that text in another page of the web. Here's the ...
0
votes
2answers
94 views

Selenium - WebDriver not recognizing elements but IDE recognizes same elements

I am working on a sample assignment on Thomson Holidays website (http://www.thomson.co.uk/holidays.html). On left hand side there is a Holiday Search panel. I am unable to recognize any of these ...
1
vote
0answers
39 views

Retry failed step in Selenium IDE

Is there a way to configure the Selenium IDE to retry a failed step after a defined period of time (e.g. 1 second)? This way you could let the tests run at the fastest speed, even with dynamic ...
0
votes
0answers
34 views

How to record Click and corresponding ajax call on Image map on Selenium IDE?

I have an Image with image mapping as well as storing the mouse click position on click event. Following is sample mapping area to get the idea. <map id="ctl00_ContentPlaceHolder1_mapFront" ...
0
votes
1answer
66 views

Verify hidden text presence using Selenium IDE

Creating some test cases for a web page using Selenium IDE,I've found this situation: inside a DIV tag (hidden by a CSS) there is a very long text. I'd like to find a solution to automatically check ...
0
votes
1answer
69 views

How to handle a new window tab in selenium IDE?

I was trying to automate searching jobs in Naukri. when I do a search by category, it opens the window in a new Tab. That window is served by a link, ex: < a ...
0
votes
1answer
124 views

Selenium IDE storeEval for xpath threw an exception: missing ) after argument list

Here's the code snippet: <tr> <td>storeEval</td> <td>substring-after(id('dateTimeRecurring')//ul[contains(@class,'table-data-row')][1]/@id, 't')</td> ...
0
votes
1answer
38 views

how to generate dynamic asserts in nodejs soda

I have below code in nodejs for selenium using soda script. If you see my script below, look for verifyData() There is row testing happening for fixed columns values. I want to generate these asserts ...
0
votes
0answers
43 views

Remove variable name prompt from Selenium IDE

I use Selenium IDE exclusively as a recorder. In user-extensions I have: CommandBuilder.add("action",storeText); VARID = 0; function storeText(window){ command = ...
0
votes
0answers
31 views

xul drag and drop function doesn't work Firefox 17 ESR but works in Firefox 10 ESR

I am having a problem with a xul drag and drop function designed for selenium RC and selenium IDE. It works in Firefox 10 ESR but does not work in Firefox 17 ESR. the code used for the draganddrop ...
0
votes
0answers
32 views

Dynamically created pages in selenium

I am testing a project using Selenium. The test case was created using the record function and all cases work at first. A problem I am running into is when a page is created or deleted outside of ...
0
votes
1answer
108 views

selenium dragAndDrop not dragging and dropping, though selector seems OK

I'm trying to use dragAndDrop in the Firefox selenium IDE but it's not working. I'm a big fan of selenium but this problem has been driving me crazy for the last day. I have a dragAndDrop test: ...
0
votes
0answers
40 views

how to verify entire web site with Selenium ID

I'd like to verify that all pages of a website, meet the following conditions: assertElementPresent --> div.box assertElementPresent --> #footer assertElementNotPresent --> msg-error In ...
0
votes
4answers
90 views

how to verify a class using selenium IDE

I want to be able to verify (or assert) that a class ("box") is present. Can I do this with Selenium IDE? Here's an example of html using class "box" ... <div class="box documentText"> ...
0
votes
2answers
146 views

Not able to delete cookies using selenium ide

I am not able to delete cookies using selenium ide . I want to delete all my cookies before the test case execution i have tried <tr> <td>deleteCookie</td> ...
0
votes
2answers
68 views

Selenium IDE - Auto-calculation

I have a form, in which there are Weight and height fields. When I key-in values in these two fields, the value in the "BMI" field is auto-filled. This is working fine when I do it manually, but when ...
0
votes
1answer
182 views

Click a button with XPath containing partial id and title in Selenium IDE

Using Selenium IDE, I'm trying to click a button within a table on a webpage using XPath with a partial id and a title from the element. The XPath I'm using is: xpath=//*[contains(@id, ...
0
votes
2answers
29 views

Is there a way to time the execution of Selenium scripts in the IDE?

Is there a way to time the execution of Selenium scripts in the IDE? I would like to be able to provide execution times for a script.
0
votes
3answers
68 views

xpath parentheses selenium

I want to select the second match of my path in a document in selenium IDE: This is the path. I am sure it is valid because Firebug can find it with no problems (//label[text() = "stupid"])[2] ...
-3
votes
1answer
173 views

What is the difference between selenium standalone server and selenium-webdriver [closed]

I am new learner of Selenium and I am confused about "selenium standalone server" and "selenium-webdriver". Please help me.
-2
votes
1answer
37 views

HTTPS is allow to test in selenium IDE?

HTTPS is allow to test in selenium IDE,while i test with HTTPS site which gives error
-1
votes
1answer
65 views

Should i need to use seleniumm standalone server with Selenium IDE with Ruby language

I am new learner of Selenium IDE and I am going to write test cases with selenium IDE with Ruby. I have read Selenium standalone server is used with Java. Should i need to use Selenium standalone ...
0
votes
0answers
89 views

Issue with selenium IDE, “[error] testCase.debugContext.currentCommand() is undefined”

I am seeing the this error in a script that hasn't changed - but the Selenium version has. The error happens for me at an EndWhile loop that successfully executes 10+ times. I face this error. ...
0
votes
4answers
619 views

Selenium IDE datadrivenv0.2 issue with Firefox 20.0

I have just updated my firefox to v 20.0. Whenever I open Selenium IDE in firefox , it show a popup error . Failed to load user-extensions.js file=[PATH to file ...]datadriven_v0.2/datadriven.js ...
0
votes
1answer
64 views

How can I test items with variable IDs?

I want to test variable pictures and variable check-boxes in my web page. It is like an online market, so every time you refresh the same page you will get different pictures with different IDs and ...
0
votes
1answer
69 views

Moving from Selenium IDE to what?

I have been given the following job from my boss: three years ago a former employee created selenium tests for our project and committed them via eclipse now I have to update the tests due to the ...
0
votes
3answers
301 views

Read the rows in excelsheet and populate in webpage text box

Can anyone please suggest me how can I read an excel-sheet in my local-drive say"C:\company_names.xls" and populate into the text boxes present in a webpage. I will explain the test case scenario as ...
0
votes
2answers
255 views

Dropdown click not working in Selenium RC

I am trying to automate test scripts in selenium. Scenario of the activity to be automated: It should open automatically a page URL first. Click on the left navigation. The page then gets ...
0
votes
2answers
218 views

Handle javascript in selenium ide

Below is the example where i failed post clicking of submit button: package demo; import static org.junit.Assert.assertEquals; import org.junit.After; import org.junit.Before; import ...
0
votes
1answer
79 views

Is it possible to start a Selenium test case in Firefox with a single click?

Is it possible to run a Selenium test case in Firefox with a single click using a button in the add-on bar? Or would I have to open the Selenium UI first, load the test case and run it? After all the ...

1 2 3 4 5 9