selenium-ide

Storing html source or contents of a variable in selenium ide?

I am trying to build a macro in selenium ide that stores the page source to a file. I see there is a command storeHtmlSource() that stores the page source to a variable, but I can't figure out how to store the contents of the variable to a file. Is there some direct way to do this or do I need to somehow have it execute javascript to do...

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. ...

Why does the Selenium IDE recorder call my LocatorBuilder function multiple times per user click?

I have defined a LocatorBuilder function and inserted it as the first element of LocatorBuilders array. It is working nicely. However, when I add an alert() at the top of my function, I observe that my function is being called twice for each user click that is recorded. Specifically, when I turn on recording and click a button on the pag...

How do I make a Selenium test for a page with a textbox whose name constantly changes?

I am trying to create a test that can enter a username and password into a login form on a page. However, the textbox name changes on every load of the page, and so the test stops each time I run it. How can I set up Selenium IDE so that it can identify the text box across refreshes? ...

Select selenium element by name with parantheses?

I have the following input element: <input name='selected(1234)' type="checkbox" /> When I record, I get this: Command: click Target: selected(1234) This doesn't find the element, and neither does Target: name=selected(1234) My assumption is that the parentheses are somehow messing with the lookup. What's the proper way to do this...

How to make Selenium IDE as exe?

Hi Friends, I downloaded Selenium IDE code.Now i want to start selenium IDE just by double clicking on it not as firefox plugin.Any Idea which helps me to start IDE as a desktop application is appreciated.Thanks in advance. ...

Selenium Click method not working on an Xpath locator

Folks, My first time on Stack Overflow. Hope y'all can help ... I'm trying to use Selenium to click on the 'Buy Now' button on an html page. Here's the HTML snippet: </div> <a href="javascript:void(0)" class="buttonCheckout">Buy Now</a> <a href="#" class="buttonSoldout">Sold Out</a> </div> I used the Selenium IDE to get the ...

Selenium - checking image validity

I'm creating a suite of Selenium tests for an web album application. I would like to test whether an image is actually displayed (it contains valid image data). Is such thing possible? Thanks for help. ...