Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

use incognito mode in selenium webdriver

import time
from selenium import webdriver

chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--incognito")

driver = webdriver.Chrome(chrome_options=chrome_options)
driver.maximize_window()
driver.get('https://google.com')
time.sleep(3)
driver.close()
Comment

PREVIOUS NEXT
Code Example
Python :: incognito selenium 
Python :: plt.imshow grayscale 
Python :: request url in web scraping 
Python :: python datetime string 
Python :: python save figure 
Python :: python plot frequency of column values 
Python :: django return httpresponse 
Python :: ubuntu remove python 2.7 
Python :: hibernate windows with python 
Python :: read multiple csv python 
Python :: unable to locate package python-pip 
Python :: python check if internet is available 
Python :: dotenv error pip python 
Python :: list files in s3 folder python 
Python :: import user in django 
Python :: python create uuid 
Python :: split array into chunks python 
Python :: python get day name 
Python :: python cv2 read image grayscale 
Python :: python pip graphviz 
Python :: standardscaler into df data frame pandas 
Python :: add conda env to jupyter 
Python :: python make txt file 
Python :: pillow python crop 
Python :: ndarray to pil image 
Python :: images from opencv displayed in blue 
Python :: what is self in programming 
Python :: how can I sort a dictionary in python according to its values? 
Python :: how to create dataframe in python 
Python :: pysimplegui double Slider 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =