Happy to help, @bptsai - curious to know if there's a specific business need to host the chrome driver inside the runbook. If not, then I recommend hosting the driver locally then reference the driver path via your python script. Check out this community solution as a guide.
- Download ChromeDriver here: https://sites.google.com/a/chromium.org/chromedriver/downloads
- Here are the available options on how to reference downloaded driver via python script:
- add downloaded driver to your system
path
- save the driver in same directory as your python script
- specify the location directly via
executable_path
e.g.driver = webdriver.Chrome(executable_path='C:/path/to/chromedriver.exe')
- add downloaded driver to your system
Also ref: Create Python runbook