elmoi0010 Posted January 19, 2014 Posted January 19, 2014 Sorry for my very noob and noob question but i really dont know. is there a way to click this checkbox without "GUI" ? i was searching and searching and all says how to do it but with GUI and i dont want GUI. thanks
l3ill Posted January 19, 2014 Posted January 19, 2014 Have a look at _IEFormElementCheckBoxSelect in the help file Bill My Contributions... SnippetBrowser NewSciTE PathFinder Text File Manipulation FTP Connection Tester / INI File - Read, Write, Save & Load Example
elmoi0010 Posted January 19, 2014 Author Posted January 19, 2014 Have a look at _IEFormElementCheckBoxSelect in the help file Bill it's not a form bro ;S i tryed that
mikell Posted January 19, 2014 Posted January 19, 2014 Local $oInputs = _IETagNameGetCollection($oIE, "input") For $oInput In $oInputs If $oInput.id == "accept_terms" Then $oInput.checked = true Next
elmoi0010 Posted January 19, 2014 Author Posted January 19, 2014 Local $oInputs = _IETagNameGetCollection($oIE, "input") For $oInput In $oInputs If $oInput.id == "accept_terms" Then $oInput.checked = true Next Not working too bro e.e! jaja
elmoi0010 Posted January 19, 2014 Author Posted January 19, 2014 Local $oInputs = _IETagNameGetCollection($oIE, "input") For $oInput In $oInputs If $oInput.id == "accept_terms" Then $oInput.checked = true Next this is the source if you need bro --> SOURCE
Solution mikell Posted January 19, 2014 Solution Posted January 19, 2014 It works bro, it works #include <IE.au3> $oIE = _IECreate("https://secure.upcloud.com/signup") Local $oInputs = _IETagNameGetCollection($oIE, "input") For $oInput In $oInputs If $oInput.id == "accept_terms" Then $oInput.checked = true Next The checkbox is checked
elmoi0010 Posted January 19, 2014 Author Posted January 19, 2014 It works bro, it works #include <IE.au3> $oIE = _IECreate("https://secure.upcloud.com/signup") Local $oInputs = _IETagNameGetCollection($oIE, "input") For $oInput In $oInputs If $oInput.id == "accept_terms" Then $oInput.checked = true Next The checkbox is checked Thanks you so much bro <3
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