Tagged Questions
4
votes
3answers
9k views
How do I test modal dialogs with Selenium?
I'm getting started with Selenium IDE and trying to test a webapp that's full of modal dialogs (window.showModalDialog).
Recording the test seems to work (except there's nothing in the log when the ...
1
vote
3answers
934 views
Selenium RC just run the first case in the suite
I'm trying to run an html testSuite with Selenium RC.
The browser starts, the first test runs, but nothing else. Selenium never start running the second test in my suite. Couldn't find anything ...
1
vote
1answer
554 views
Selenium IDE - Scroll in div?
<div id="aaa"> [lots of text] SHOW ME</div>
#aaa {
width: 100px;
height: 100px;
overflow: scroll;
}
http://jsfiddle.net/3NXtJ/
is possible make scrool to DOWN and show me text "SHOW ...
1
vote
2answers
1k views
Using multiple simultaneous tests using Selenium IDE
I have written a simple test for my website. The test simply search for a word in my search page and waits for results.
What I need is to run the same test 40 times simultaneously to mimic a ...
1
vote
1answer
912 views
GWT 2.0 with Selenium
I am trying to use Selenium IDE to record action and then make them run but it is not working. Is it possible to use Selenium IDE with GWT??
Thanks
1
vote
2answers
340 views
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 ...
0
votes
3answers
652 views
Selenium IDE - how to assert input text in a table
I have been searching for about an hour so I thought I would give this a shot.
I have an html page similar to this this:
<table>
<tbody>
<tr>
<td>
<input name="bla1" ...
0
votes
2answers
313 views
wait for user action in Selenium?
<tr>
<td>type</td>
<td>id=login</td>
<td>aaa</td>
</tr>
<tr>
<td>click</td>
<td>id=password</td>
...
0
votes
1answer
403 views
Unable to locate using find element by link
Newbie in testing. I generated a test case using Selenium, and then exported it as a Python script. Now, when I try to run that in terminal, I get following error:
raise exception_class(message, ...
0
votes
0answers
58 views
Selenium waitFor and confirm combinations
I am running Selenium on a page showing a list of objects and a 'delete' link for each object.
Whenever the user clicks on the delete link, a confirm dialog shows and asks for confirmation. If the ...