Guest User

Untitled

a guest
Jul 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. SystemUtil.Run "iexplore.exe" , "https://www.google.com"
  2. With Browser("XYZ")
  3. With .Page("XYZ")
  4. .WebEdit("username").Set uac_username
  5. .WebEdit("password").SetSecure uac_pass
  6. .WebButton("Sign In").Click
  7. End With
  8. .OpenNewTab 'This line executes without error but no action seen on IE
  9. End With
  10.  
  11. 'Open portal URL in second tab of IE
  12. With Browser("CreationTime:=1")
  13. .Sync
  14. .Navigate "https://www.facebook.com"
  15. End With
Add Comment
Please, Sign In to add comment