Danp2 Posted November 27, 2016 Posted November 27, 2016 You may want to try some of the code in this thread to see what forms and controls are present on your page. Latest Webdriver UDF Release Webdriver Wiki FAQs
j0kky Posted November 27, 2016 Posted November 27, 2016 (edited) @JulessVerne: you're kidding, right? This should work: Local $oForm = _IEFormGetObjByName($oIE, "post") Edited November 27, 2016 by j0kky Spoiler Some UDFs I created: Winsock UDF STUN UDF WinApi_GetAdaptersAddresses _WinApi_GetLogicalProcessorInformation Bitwise with 64 bit integers An useful collection of zipping file UDFs
JulessVerne Posted November 27, 2016 Author Posted November 27, 2016 3 minutes ago, j0kky said: @JulessVerne: you're kidding, right? This should work: Local $oForm = _IEFormGetObjByName($oIE, "post") and what do i add after this _IEFormElementCheckBoxSelect($oForm,
j0kky Posted November 27, 2016 Posted November 27, 2016 (edited) does it work? _IEFormElementCheckBoxSelect($oForm, 1, "", 1, "byIndex") Edited November 27, 2016 by j0kky Spoiler Some UDFs I created: Winsock UDF STUN UDF WinApi_GetAdaptersAddresses _WinApi_GetLogicalProcessorInformation Bitwise with 64 bit integers An useful collection of zipping file UDFs
Danyfirex Posted November 27, 2016 Posted November 27, 2016 Hello. I think you only need to submit the form. Saludos Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut
JulessVerne Posted November 27, 2016 Author Posted November 27, 2016 Thank You everyone who contribuited to my thread for taking the time to post. i have made it working by doing this. Local $ClickPret = _ImageSearch("clickpret.bmp", 1, $x, $y, 0) ;====> Cauta sa dea click pe pret If $ClickPret = True Then MouseClick("Left", $x+170, $y-70) ;Checkbox click Virtual Sleep(100) MouseClick("Left", $x, $y,1 ,1) ;==>Click Pe Variation Price Send("^v") EndIf If $ClickPret = Not True Then MouseWheel("Down", 1) Sleep(400) EndIf Local $Save = _ImageSearch("savechanges.bmp", 1, $x, $y, 0) ;====> Verifica daca a ajuns la capat If $Save = True Then MouseClick("left", $x, $y) ExitLoop EndIf
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