Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Everytime when I run Selenium IDE the speed control is set to "fast" It is possible to set the speed control per default to "slow"?

share|improve this question

2 Answers

up vote 7 down vote accepted

Put this command in the beginning of your script:

Command: setSpeed
Target: 3000

The IDE has a slow speed and a fast speed. However, this is more precise so you can control the delay per command in milliseconds. This example will have it wait 3 seconds per command.

share|improve this answer

To expand on MacGyver's response, you can put the setSpeed anywhere in your tests, not just at the beginning. For example, you can use setSpeed = 0 when checking for static elements on a page, then change setSpeed to something greater to test things like text entry, etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.