Search code examples
pythonseleniumpip

Chrome crashes when selenium launches a website


I am trying to open a website on chrome via selenium with the following code:

from selenium import webdriver
from selenium.webdriver.chrome.service import Service

s=Service('C:/Users/Morteza/Documents/Dev/chromedriver.exe')
browser = webdriver.Chrome(service=s)
url='https://www.google.com'
browser.get(url)

link to problem: https://share.cleanshot.com/p1qu5y


Solution

  • This is not an issue or crash. After the specified actions are completed successfully, selenium closes the web browser. This program works fine.

    Use the following code with a while True block

    from selenium.webdriver.chrome.options import Options 
    chrome_options = Options()
    chrome_options.add_experimental_option("detach", True)