fixed MacOS

This commit is contained in:
unknown 2021-01-17 20:33:33 +01:00
parent 21260c4d9a
commit e9ee200c88
1 changed files with 10 additions and 16 deletions

View File

@ -3,39 +3,33 @@ import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))) sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
import undetected_chromedriver.v2 as uc # noqa
import time # noqa import time # noqa
def test_undetected_chromedriver(): def test_undetected_chromedriver():
# options = uc.ChromeOptions() # todo: get headless mode to work import undetected_chromedriver.v2 as uc
# options.headless = True // todo: get headless mode to work
driver = uc.Chrome() driver = uc.Chrome()
try:
driver.get_in("https://coinfaucet.eu")
except Exception:
raise
driver.save_screenshot("coinfaucet.eu.png")
# usage variation: context-manager style
# note: you use normal get() here!
with driver: with driver:
driver.get("https://coinfaucet.eu") driver.get("https://coinfaucet.eu")
time.sleep(3); driver.save_screenshot("coinfaucet.eu.png") time.sleep(4) # sleep only used for timing of screenshot
driver.save_screenshot("coinfaucet.eu.png")
with driver: with driver:
driver.get("https://cia.gov") driver.get("https://cia.gov")
time.sleep(3); driver.save_screenshot("cia.gov.png") time.sleep(4) # sleep only used for timing of screenshot
driver.save_screenshot("cia.gov.png")
with driver: with driver:
driver.get("https://lhcdn.botprotect.io") driver.get("https://lhcdn.botprotect.io")
time.sleep(3); driver.save_screenshot("notprotect.io.png") time.sleep(4) # sleep only used for timing of screenshot
driver.save_screenshot("notprotect.io.png")
with driver: with driver:
driver.get("https://www.datadome.co") driver.get("https://www.datadome.co")
time.sleep(3); driver.save_screenshot("datadome.co.png") time.sleep(4) # sleep only used for timing of screenshot
driver.save_screenshot("datadome.co.png")
test_undetected_chromedriver() test_undetected_chromedriver()