- ansar313
- Posts : 2
Join date : 2011-01-11
create delay before running the next code line for type text manualy ?
Wed Jan 12, 2011 12:14 am
hi to all
Some sites used captcha images to get registration process done. How can i create delay before running the next code line for type text manually ?
please help me
Some sites used captcha images to get registration process done. How can i create delay before running the next code line for type text manually ?
please help me
Re: create delay before running the next code line for type text manualy ?
Fri Jan 28, 2011 7:53 pm
Hi,
Try to use custom function create in some programming language to set delay if using RC. I giving you sample function created java
use function like this to wait for 20 sec
wait(20000)
hope this will help you. best of luck
Try to use custom function create in some programming language to set delay if using RC. I giving you sample function created java
use function like this to wait for 20 sec
wait(20000)
- Code:
public static void wait(int TimeInmsec){
System.out.println("wait()called, wait time in seconds="+TimeInmsec);
try{
for (int second = 0;second<TimeInmsec; second++) {
Thread.sleep(1000);
}
}
catch(Exception e)
{
System.out.println("error in wait(),error message='"+ e.getMessage()+"'");
}
}
hope this will help you. best of luck
- sani
- Posts : 1
Join date : 2011-01-28
Re: create delay before running the next code line for type text manualy ?
Fri Jan 28, 2011 9:12 pm
oh you can just use...
C#
Thread.Sleep(20000);
Java
Thread.sleep(20000);
C#
Thread.Sleep(20000);
Java
Thread.sleep(20000);
- Running Selenium Test cases as JUnit tests using Command Line
- i faced a problem during running the code in selenium rc please solve it
- how to create gmail account with changing security code using selenium
- Selenium RC code not running
- Getting Firefox Browser already running pop-up frequently while executing test code
Permissions in this forum:
You cannot reply to topics in this forum