Ayuda con este script....
Publicado: 03 Abr 2010, 23:29
Buenas tardes. señores tengo un problema y quisiera que por favor me ayuden a aclararlo.
realice este script:
Me funciona bien ya que me guarda el dato pero al final me arroja este error:
-> IE.au3 V2.4-0 Warning from function _IEGetObjById, $_IEStatus_NoMatch (txtUsuario)
--> IE.au3 V2.4-0 Warning from function _IEGetObjById, $_IEStatus_NoMatch (txtClave)
C:\Documents and Settings\USUARIO\Escritorio\cheker.au3 (27) : ==> Variable must be of type "Object".:
FileWriteLine($file, "Usuario: " & $oUser.value )
FileWriteLine($file, "Usuario: " & $oUser^ ERROR
>Exit code: 1 Time: 21.557
Me podrian ayudar por favor... Ha y solo me funciona con Iexplorer pero no con Firefox.
Saludos...
realice este script:
Código: Seleccionar todo
Func captura()
$oFrame = _IEFrameGetObjByName ($oIE, "ctl00_cp_frmAplicacion")
$oForm = _IEFormGetObjByName ($oFrame, "Inicio")
$oUser = _IEGetObjById ($oForm, "txtUsuario")
$oPass = _IEGetObjById ($oForm, "txtClave")
$file = FileOpen("test.txt", 1)
FileWriteLine($file, "Usuario: " & $oUser.value )
FileWriteLine($file, "Clave: " & $oPass.value )
if @error then Exit
FileClose($file)
Sleep(1200)
EndFunc
-> IE.au3 V2.4-0 Warning from function _IEGetObjById, $_IEStatus_NoMatch (txtUsuario)
--> IE.au3 V2.4-0 Warning from function _IEGetObjById, $_IEStatus_NoMatch (txtClave)
C:\Documents and Settings\USUARIO\Escritorio\cheker.au3 (27) : ==> Variable must be of type "Object".:
FileWriteLine($file, "Usuario: " & $oUser.value )
FileWriteLine($file, "Usuario: " & $oUser^ ERROR
>Exit code: 1 Time: 21.557
Me podrian ayudar por favor... Ha y solo me funciona con Iexplorer pero no con Firefox.
Saludos...