test chrome issue within chromedriver
from selenium import webdriver from selenium.webdriver.chrome.service import Service driver_path = r”C:UsershpDesktopUdemychromedriver.exe” # Replace with your correct path # Create a Service object for the ChromeDriver service = Service(executable_path=driver_path) # Initialize the Chrome driver using the service object driver = webdriver.Chrome(service=service) driver.get(“https://www.google.com”) i want this line of code to work i tried running the code and […]