Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Created September 4, 2018 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mottet-dev/4e52c07ad80dd7a73dfb451b882db4a5 to your computer and use it in GitHub Desktop.
Save mottet-dev/4e52c07ad80dd7a73dfb451b882db4a5 to your computer and use it in GitHub Desktop.
InstagramBot - followWithUsername
def followWithUsername(self, username):
self.browser.get('https://www.instagram.com/' + username + '/')
time.sleep(2) # not necessary
followButton = self.browser.find_element_by_css_selector('button')
followButton.click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment