Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.
3
votes
4answers
1k views
Running Selenium tests as a scheduled task
I'm trying to run a Selenium WebDriver script written in Python on a Windows 7 64-bit box as a scheduled task.
The test works pretty well when run as a batch file from the command prompt, but when ...
3
votes
0answers
409 views
Selenium (RC) hangs when started from Python test
Fairly new to Selenium (but loving it). I'm running a single test in Python on Selenium RC. I've been running it multiple times a day for about 3 weeks. Now when I try to run it, it executes all the ...
3
votes
1answer
1k views
Quicker way to assert that an element does not exist
The goal of my test is to assert that a popup does not appear after certain actions.
Previously to test if the popup exist, i have used exception handling.
try:
...