Search
 
SCRIPT & CODE EXAMPLE
 

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")
Comment

PREVIOUS NEXT
Code Example
Python :: python check if file is writable 
Python :: flask recive list 
Python :: How to Get the Union of Sets in Python 
Python :: pandas apply 
Python :: smallest number of 3 python 
Python :: python compute cross product 
Python :: permutation python 
Python :: How to develop a UDP echo client? 
Python :: pyqt5 plain text edit get text 
Python :: how to get SITE_ID in django....shell 
Python :: check if an object has an attribute in Python 
Python :: IQR to remove outlier 
Python :: raise 400 error python 
Python :: numpy array divide each row by its sum 
Python :: save seaborn lmplot 
Python :: Display head of the DataFrame 
Python :: capitalize python 
Python :: Get a list of categories of categorical variable (Python Pandas) 
Python :: run python command 
Python :: how to change key to value and versa in python dictionary 
Python :: python do while loop 
Python :: while loops python 
Python :: python list input print 
Python :: series to dataframe 
Python :: python milisegundos 
Python :: netcdf in python 
Python :: json to argparse 
Python :: python list contains 
Python :: python for loop increment 
Python :: boto3.client python 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =