Created
March 5, 2017 16:18
-
-
Save gutierri/4ea627c0893669de63c20b65ebd305c6 to your computer and use it in GitHub Desktop.
unstart all github profile with splinter (python)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from splinter import Browser | |
while True: | |
with Browser() as browser: | |
browser.visit('https://github.com/gutierri?tab=stars') | |
button = browser.find_by_css('.btn.btn-sm.js-toggler-target') | |
if not button: | |
break | |
browser.execute_script("document.querySelectorAll('button.btn.btn-sm.js-toggler-target').forEach((e) => e.click());") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment