torque3d Posted October 2, 2019 Share Posted October 2, 2019 Hi there I write this code #include "IE.au3" Local $oIE = _IECreate("https://pishkhan.cafebazaar.ir/account/login") Sleep(200) $tags = $oIE.document.GetElementsByTagName("button") Local $emailInput = _IEGetObjByName($oIE,"email") Local $passInput = _IEGetObjByName($oIE,"pass") Sleep(500) _IEFormElementSetValue($emailInput,"an username") Sleep(500) _IEFormElementSetValue($passInput,"a password") Sleep(200) For $tag In $tags If $tag.type = "submit" Then If $tag.className = "el-button auth-box__submit el-button--primary el-button--large" Then _IEAction($tag,"click") EndIf EndIf Next When I use this code the website message me that the password / email you entered is wrong but when I fill it manually it works well . What should I do ? Link to comment Share on other sites More sharing options...
Nine Posted October 2, 2019 Share Posted October 2, 2019 It is protected by CAPTCHA. If you read forum rules, we cannot discuss how to bypass it... “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
torque3d Posted October 3, 2019 Author Share Posted October 3, 2019 CAPTCHA can't be bypass by web bots right ? we have to submit it to bypass websites i think Earthshine 1 Link to comment Share on other sites More sharing options...
Developers Jos Posted October 3, 2019 Developers Share Posted October 3, 2019 6 hours ago, torque3d said: CAPTCHA can't be bypass by web bots right ? Which part of the forum rules did you not understand and also try to think before posting these type of questions. *click* Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Recommended Posts