devilyn Posted May 16, 2011 Posted May 16, 2011 I'm trying to click the "Sign In" button but no luck. i also tried from submit and different click methods #include <IE.au3> $oIE = _IECreate("https://qik.com/session/new") $tags = $oIE.document.GetElementsByTagName("div") For $tag In $tags $class_value = $tag.GetAttribute("class") If $class_value = "button " Then MsgBox(0, "Level: ", $class_value) _IEAction($tag, "click") EndIf Next thanks in advance
sleepydvdr Posted May 16, 2011 Posted May 16, 2011 This seems to work for me: $oIE = _IECreate("https://qik.com/session/new") $oSubmit = _IEGetObjByName ($oIE, "_submit") _IEAction ($oSubmit, "click") #include <ByteMe.au3>
wakillon Posted May 16, 2011 Posted May 16, 2011 This seems to work for me: $oIE = _IECreate("https://qik.com/session/new") $oSubmit = _IEGetObjByName ($oIE, "_submit") _IEAction ($oSubmit, "click") I have found the same but with _IEGetObjByName ( $oIE, "commit" ) ( commit is the Name and _submit is the Id ) It works with both ! AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
sleepydvdr Posted May 16, 2011 Posted May 16, 2011 whats you IE version?IE 8.0.7600.16385 #include <ByteMe.au3>
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now