TRIGGERcmd
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. fostercarly
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    fostercarly

    @fostercarly

    0
    Reputation
    2
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    fostercarly Unfollow Follow

    Latest posts made by fostercarly

    • RE: Error

      You can test if it actually is in the Python PATH, if you open a cmd and type in chromedriver and hit Enter. If Starting ChromeDriver 2.15.322448 is appearing, the PATH is set appropriately and there is something else going wrong. Then try the following:

      Download ChromeDriver

      Then you have multiple options:

      • Add it to your system path
      • Put it in the same directory as your python script
      • Specify the location directly via executable_path
      driver = webdriver.Chrome(executable_path='C:/path/to/chromedriver.exe')
      

      Before you add the chromedriver to your path, make sure it's the same version as your browser.

      If not, you will need to match versions: either update/downgrade you chrome, and upgrade/downgrade your webdriver.

      posted in Windows
      F
      fostercarly