Click the button in web page

chidambaram

Well-known member
Joined
Dec 27, 2007
Messages
62
Location
Chennai,India
Programming Experience
Beginner
hi,

I want to enter the text in textbox in the web site and click the button. Once clicked, the next page have to be open. In that second page also i want to enter the text and click the button.

I entered the text and click the button. Second page also opened. But the process for the second page started before the second page completely downloaded. So error is occured. how can i make a program to wait till the page is completely downloaded?

Urgent plz...

Thanks in advance
 
pauses execution of your code for a specified number of milliseconds

VB.NET:
threading.thread.sleep(1000)

pauses execution of your code for 1 second
 
Thank u.

Its working fine.

I have another querry.

I want to enter the text in text box in the web page and press that text box to open the next page. In that web page, to open the next page they written the code in key press event. so how can i press a enter key through code in that text box
 
Back
Top