Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

chrome profiles user open with python

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument("user-data-dir=C:Userspc nameAppDataLocalGoogleChromeUser DataProfile 2")
driver = webdriver.Chrome(executable_path='C:path	ochromedriver.exe', chrome_options=options)
driver.get("https://www.google.com")
Source by testup.io #
 
PREVIOUS NEXT
Tagged: #chrome #profiles #user #open #python
ADD COMMENT
Topic
Name
3+2 =