Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created March 28, 2016 00:31
Show Gist options
  • Select an option

  • Save jrichardsz/a5498fa0b971a3435e28 to your computer and use it in GitHub Desktop.

Select an option

Save jrichardsz/a5498fa0b971a3435e28 to your computer and use it in GitHub Desktop.
Function _IEFormElementSetValue - AutoIt
#include <IE.au3>
Call ("SignIn")
Func SignIn()
Global $oIE = _IECreate ("http://www.google.com")
Local $username = _IEGetObjByName ($oIE, "user")
Local $password = _IEGetObjByName ($oIE, "pass")
_IEFormElementSetValue($username,"jyjtrans")
_IEFormElementSetValue($password,"tucontraseña")
EndFunc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment