Hi,
bis vor kurzem hatte ich Win XP 32bit und IE8
Damit konnte ich mich problemlos bei Klarmobil und Congstar mit folgendem Skript einloggen.
Spoiler anzeigen
#include <IE.au3>
[/autoit] [autoit][/autoit] [autoit];Klarmobil
$oIE = _IECreate("https://ssl.klarmobil.de/meinkonto/login/teaser.php", 0, 1, 1, 0)
$oForm = _IEFormGetCollection($oIE, 0)
$oQuery = _IEFormElementGetCollection($oForm, 2)
$oName = _IEFormElementGetObjByName($oForm, "username")
$oPW = _IEFormElementGetObjByName($oForm, "password")
_IEFormElementSetValue($oName, "ABC")
_IEFormElementSetValue($oPW, "ABC")
Sleep(100)
_IEFormSubmit($oForm, 1)
sleep(1000)
[/autoit] [autoit][/autoit] [autoit][/autoit] [autoit];Congstar
$oIE = _IECreate("https://www.congstar.de/meincongstar/", 0, 1, 1, 0)
$oForm = _IEFormGetCollection($oIE, 1)
$oName = _IEFormElementGetObjByName($oForm, "user")
$oPW = _IEFormElementGetObjByName($oForm, "pass")
_IEFormElementSetValue($oName, "ABC")
_IEFormElementSetValue($oPW, "ABC")
Sleep(100)
$oSubmit = _IEGetObjByName($oIE, "submit", 1)
_IEAction($oSubmit, "click")
Nun habe ich Win 7 64bit und IE9
Der Benutzename und das Passwort wird problemlos eingetragen.
Leider wird jedoch nicht automatisch eingeloggt.
Hat einer eine Idee was da nun nicht mehr passt ![]()