I am getting error
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 108
Current browser version is 107.0.5304.121 with binary path /usr/bin/chromium
But in my local environment its working fine but not in streamlit cloud
code
option = webdriver.ChromeOptions()
option.add_argument(‘–headless’)
service = Service(ChromeDriverManager().install())
driver = webdriver.Chrome(options = option, service= service)