Running ChromeDriver with Python selenium on Heroku

前端 未结 2 531
感动是毒
感动是毒 2020-12-01 08:31

So I have a Flask server on Heroku which has been working fine as expected for some time.Now, as per new requirements, I need to add functionality to the Flask server to fet

2条回答
  •  日久生厌
    2020-12-01 09:14

    In your Heroku app go to Settings and add the following build packs:

    • https://github.com/heroku/heroku-buildpack-chromedriver
    • https://github.com/heroku/heroku-buildpack-google-chrome

    In addition, in your Python script you have to set a few Chrome options so that your script runs on Heroku without error.

    import time
    
    from selenium import webdriver
    from webdriver_manager.chrome import ChromeDriverManager
    
    gChromeOptions = webdriver.ChromeOptions()
    gChromeOptions.add_argument("window-size=1920x1480")
    gChromeOptions.add_argument("disable-dev-shm-usage")
    gDriver = webdriver.Chrome(
        chrome_options=gChromeOptions, executable_path=ChromeDriverManager().install()
    )
    gDriver.get("https://www.python.org/")
    time.sleep(3)
    gDriver.save_screenshot("my_screenshot.png")
    gDriver.close()
    

    Here is a more detailed post that I created in case you are still having problems: https://www.jtrocinski.com/posts/Heroku-Use_Selenium_to_run_Google_Chrome_in_Python.html

提交回复
热议问题