Tagged Questions

5
votes
3answers
877 views

Validate DOM manipulation when using Selenium

I'm using Selenium to test my application. A nice test would be that after every DOM manipulation I would validate the DOM. Is there a nice way to do this? Obvious ways are: use some builtin ...
2
votes
4answers
628 views

How to find out DOM and CSS address to an element for Selenium?

I have a following element (Login box): <input type="text" style="font-family: Verdana; font-size: 11px; width: 180px;" id="ctl00_Content_ctl00_Login2_UserName" maxlength="50" ...
2
votes
1answer
673 views

jQuery events not being called when triggering 'change' event via fireEvent

Problem appears on IE7-8. Here is simple demonstration: <html> <head> <script type="text/javascript" ...
2
votes
1answer
264 views

Click at link by address template

I'm using Selenium for making some work: script should click at link followed by it's own address. For example, there is a method: clickAndWait. I have to pass it link title. But at my page this title ...
1
vote
2answers
50 views

Selenium react to events

I'm currently using the latest version of Selenium and its .net bindings to perform some tests. Unfortunately I have to simulate some reaction that happens at a variable time and can only be performed ...
1
vote
0answers
55 views

How do I get the current DOM with Selenium Java 2.8?

I'm using the latest version of Selenium and the chromedriver to test a ZK application. During the test, I'd like to dump the DOM (or part of it) to help me find the elements I need (and probably ...
1
vote
1answer
121 views

Selenium waitForDOMToLoad()?

Selenium's open command implicitly waits for the whole page to load, including images, etc. How do I just wait for the DOM to load, like jQuery's .ready() method? Currently, I'm using ...
1
vote
1answer
51 views

Can I test for the end of the content of a text/plain file with Selenium or javascript?

I have a page that results in a text/plain file being displayed in the browser that looks like this: ... Admin Site Administration 2010-04-21 22:26:34 admin_user@abcdef.com Test Site Bob ...
1
vote
1answer
663 views

Is there a way to get/save the DOM with Selenium?

What I'm looking for is a method that works like "captureScreenshot(String path)", but instead of producing an image is saves the DOM as it currently is. Note that the existing getBodyText() method is ...
0
votes
1answer
32 views

Using Selenium to get the contents of a DIV that's been filled with javascript

I'm working with Selenium to automatically load all of the comments of a New York Times article. Once they are loaded, I want to get the comments and store that information to use later. However, ...
0
votes
3answers
28 views

jquery val() implementation

I have a dyamically loaded form that has to be "prefilled" with some data. By prefilled I mean that a select option or a input type="radiobutton" have to be preselected. Of course, I'm using ...
0
votes
1answer
47 views

How do I click on a button in Selenium IDE using only the text associated with the button and not its position?

this is the dom source of the button I want to click on <div class="footer clearFloat"> <div class="left"> </div> <div class="right"> ...
0
votes
2answers
67 views

How to trigger a javascript event with this button definition from Python Selenium script

<div id="feesnav"> <div style="float: right;"> <button id="b2" class="adjustuserfees_button active" onclick="cusers(this)"/> </ Say I want to click on button b2 using python ...
0
votes
3answers
836 views

get element by name by selenium IDE

I'm trying to get element by name, and I have a problem This is a element from amazon site: <input type="text" style="width: 100%; background-color: rgb(255, 255, 255);" title="Search for" ...
0
votes
2answers
654 views

javascript / selenium: get the window from the document object

I am writing user extensions to selenium. I have the document object. How can I get the window object of the window that contains my document? PageBot.prototype.locateElementByMyLocator= ...
-6
votes
0answers
56 views

How to write CSS & DOM syntax in selenium [closed]

How to write XPATH,CSS,DOM in selenium, and what is the syntax for those? Cany you explain how to write CSS & DOM. Example for Xpath: //title[@lang='eng']