Skip to content

Instantly share code, notes, and snippets.

@szymon1118
Last active July 3, 2019 04:38
Show Gist options
  • Save szymon1118/4926580b66b4eef2f14387e17688d5b9 to your computer and use it in GitHub Desktop.
Save szymon1118/4926580b66b4eef2f14387e17688d5b9 to your computer and use it in GitHub Desktop.
Using PhoneInfoga (https://github.com/sundowndev/PhoneInfoga/) with Chrome webdriver on Windows
  1. Download chromedriver.exe that matches your Chrome version.
  2. Copy above EXE file to PhoneInfoga\lib directory.
  3. Replace in PhoneInfoga\lib\googlesearch.py this line:
browser = webdriver.Firefox()

with this one:

browser = webdriver.Chrome(executable_path=os.path.join(os.path.dirname(os.path.abspath(__file__)), 'chromedriver.exe'))
  1. Run phoneinfoga.py and check if it fully works.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment