Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <button type="button" class="text-uppercase promotion__btn btn btn-primary btn-sm">Get started now</button>
  2.  
  3. set IE = createobject("internetexplorer.Application")
  4. IE.statusbar = false
  5. IE.menubar = false
  6. IE.toolbar = flase
  7. IE.visible = true
  8.  
  9. IE.navigate("www.testing.com")
  10.  
  11. wscript.sleep(2000)
  12.  
  13. For Each btn In IE.Document.getElementsByTagName("button")
  14. If btn.type = "button" Then btn.Click()
  15. Next
Add Comment
Please, Sign In to add comment