Jump to content

Recommended Posts

Posted
Local $oIE1 = _IECreate("http://speedosurf.com/compte/login")

sleep(1000)

$Input_Name  = _IEGetObjByName($oIE1, "pseudo")
_IEFormElementSetValue($Input_Name, "test")
$Input_Name  = _IEGetObjByName($oIE1, "pass")
_IEFormElementSetValue($Input_Name, "test")

sleep(1000)

$oElements = _IETagNameGetCollection($oIE1, "input")
For $oElement in $oElements
    If $oElement.type = "submit" Then
        _IEAction($oElement, "click")
        Exitloop
    EndIf
 Next

Hello, i want to connect to this website but _IEAction don't work in my script. Someone can help me ?

thanks

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...