I want to open profile in selenium (for login in whatsapp for once) like the below code but when run my code chrome open a second tab with this url:http://%3D%20c/Users/Ali/AppData/Local/Google/Chrome/User%20Data/Default
from selenium import webdriver
from selenium.webdriver import ChromeOptions
PATH = "chromedriver.exe"
url = "https://web.whatsapp.com/"
CH_Option = ChromeOptions()
CH_Option.add_argument("user-data-dir = C:/Users/Ali/AppData/Local/Google/Chrome/User Data/Default")
Driver = webdriver.Chrome(PATH,options=CH_Option)
Driver.get(url)
add_argumentmethod with a raw (literal) string, e.g.CH_Option.add_argument(r"user-data-dir = C:/example")? - VirtualScooter