When running the webdriver, the Chrome browser opens and closes the page

244 Views Asked by At

I am unable to open a chrome address through the selenium library webdriver. The page opens but closes quickly.

I am executing the python instructions below and the Chrome browser opens and closes immediately without generating an error message in the terminal.

from selenium import webdriver as opcoesSelenium
from selenium.webdriver.common.by import By

navegador = opcoesSelenium.Chrome()

navegador.get("https://rpachallengeocr.azurewebsites.net/")

My Chrome browser version is 119.0.6045.160 and selenium is 4.15.2.

I can't find the webdriver for this version at https://chromedriver.chromium.org/downloads.

So I used the instructions below to install the webdriver compatible with my browser version, however, it did not solve the problem.

from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromeService
from webdriver_manager.chrome import ChromeDriverManager

driver = webdriver.Chrome(service=ChromeService(
    ChromeDriverManager().install()))

driver.get("http://www.python.org")

driver.close()

How to solve this problem?

0

There are 0 best solutions below