Jump to content

Website detect autologin with autoit !!!


Recommended Posts

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

  • Developers
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

  • Jos locked this topic
Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...