09-30-2009, 04:14 PM
you can use Browser.Navigate again to navigate other url.
you can use back method as well
see the example below
you can use back method as well
see the example below
Code:
'Navigate first url
Browser("Login").Navigate "http://www.learnqtp.com"
'Navigate to another
Browser("Login").Navigate "https://www.learnqtp.com/forums"
'again back to fisrt
Browser("Login").Navigate "http://www.learnqtp.com"
'or you can use back as well
Browser("Login").Back