mifi / instauto

Instagram bot / automation library written in Javascript for Node.js
799 stars 145 forks source link

Fix cookies acceptance #64

Closed dlzs8 closed 3 years ago

dlzs8 commented 3 years ago

I tried to start bot, but for some reason it couldn't login. After some looking into code I found out that condition which was trying to find 'accept' button was strict compare with string 'Accept', but the button had text 'Accept All', so it wasn't working. I've changed this condition to 'contains' text 'Accept' and made it work again.