Ejemplo n.º 1
0
 def country_cities_page(country_code: str,
                         country: str):  # pragma: no cover
     # Leads to page listing cities of a specific country - no real need at this time to use
     driver.get("https://www.instagram.com/explore/locations/" +
                country_code  # Country_code is 2 letters
                + "/" + country + "/")
     sleep(2)
Ejemplo n.º 2
0
 def countries_list(country: str):  # pragma: no cover
     # Leads to countries list page - no real need at this time to use
     driver.get("https://www.instagram.com/explore/locations/" + country +
                "/")
     sleep(2)
Ejemplo n.º 3
0
 def profile_edit():  # pragma: no cover
     # Your profile Edit - no real need at this time to use
     driver.get("https://www.instagram.com/accounts/edit/")
     sleep(2)
Ejemplo n.º 4
0
 def tagged_pictures_page():  # pragma: no cover
     # Pictures you are tagged - no real need at this time to use
     driver.get("https://www.instagram.com/jacksoncav/tagged/")
     sleep(2)
Ejemplo n.º 5
0
 def account_page(account: str):
     # Opens account page - yours or someones else's account page
     driver.get("https://www.instagram.com/" + account + "/")
     print("Loading", account, "profile page...")
     sleep(2)
Ejemplo n.º 6
0
 def saved_pictures_page():  # pragma: no cover
     # Your Saved Pictures - no real need at this time to use
     driver.get("https://www.instagram.com/jacksoncav/saved/")
     sleep(2)
Ejemplo n.º 7
0
 def hashtag_page(hashtag: str):  # pragma: no cover
     # Page of a specific tag
     driver.get("https://www.instagram.com/explore/tags/" + hashtag + "/")
     print("Loading", hashtag, "hashtag page...")
     sleep(2)