Skip to content

Selenium Instagram Bot – Clicking the “Like” Button

I have written a program to go on the Instagram explore page, and like the first six photos. Right now, I am using this rather convoluted method to find the “Like” button. I would much rather have it formatted like I did the “click the login button” section. So far, I have tried inspec…

Python Regex pL matching issues

I’m trying to match a list of keywords I have, taking care to include all Latin characters (e.g accented). Here’s an example gives: Which looks correct. However: gives: This is wrong, as I expect a match for “u blah”. I’ve tried to also use Pythons built in re module, but I canno…