123456789101112131415161718192021222324252627282930313233 |
- from selenium import webdriver
- from useragent import USERAGENT
- WIDTH = 1280
- HEIGHT = 1024
- def get_driver(url=None):
- options = webdriver.ChromeOptions()
- options.add_argument("--no-sandbox")
- options.add_argument("--disable-gpu")
- options.add_argument("--disable-dev-shm-usage")
-
- options.add_argument(f"user-agent={USERAGENT}")
- options.add_argument(f"window-size={WIDTH},{HEIGHT}")
-
- options.add_argument("--headless=new")
- if url is None:
- url = "http://127.0.0.1:9515"
- driver = webdriver.Remote(command_executor=url, options=options)
- return driver
- def get_useragent(driver):
- return driver.execute_script("return navigator.userAgent;")
|