Last active
December 6, 2021 02:41
-
-
Save CoderSherlock/7649289bef6db2c9f93b7054bd93d6d4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # In chrome console: | |
| path="" | |
| $x("//*[@id=\"org-repositories\"]/div/div/div[2]/ul/li[*]/div/div[1]/div[1]/h3/a").forEach( | |
| function(i){ | |
| console.log(i.href); | |
| path+=i.href+"\n" | |
| }); | |
| console.log(path); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment