Untitled

Anonymous
python
06/18/2024 10:40 PM
376 B
17
Indexable
from selenium.webdriver.chrome.options import Options

options = Options()
options.add_argument("--disable-extensions")
options.add_argument("--disable-gpu")
options.add_argument("--no-sandbox")
options.add_argument("--headless")
driver = webdriver.Chrome(options=options)
Editor is loading...
Leave a Comment