2021-12-15 21:53:41 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
888 888 d8b
|
|
|
|
888 888 Y8P
|
|
|
|
888 888
|
|
|
|
.d8888b 88888b. 888d888 .d88b. 88888b.d88b. .d88b. .d88888 888d888 888 888 888 .d88b. 888d888
|
|
|
|
d88P" 888 "88b 888P" d88""88b 888 "888 "88b d8P Y8b d88" 888 888P" 888 888 888 d8P Y8b 888P"
|
|
|
|
888 888 888 888 888 888 888 888 888 88888888 888 888 888 888 Y88 88P 88888888 888
|
|
|
|
Y88b. 888 888 888 Y88..88P 888 888 888 Y8b. Y88b 888 888 888 Y8bd8P Y8b. 888
|
|
|
|
"Y8888P 888 888 888 "Y88P" 888 888 888 "Y8888 "Y88888 888 888 Y88P "Y8888 888 88888888
|
|
|
|
|
|
|
|
by UltrafunkAmsterdam (https://github.com/ultrafunkamsterdam)
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2021-12-22 07:07:27 -07:00
|
|
|
__version__ = "3.1.0"
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import shutil
|
|
|
|
import sys
|
|
|
|
import tempfile
|
|
|
|
import time
|
|
|
|
import inspect
|
2021-12-22 07:07:27 -07:00
|
|
|
import threading
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
import selenium.webdriver.chrome.service
|
|
|
|
import selenium.webdriver.chrome.webdriver
|
|
|
|
import selenium.webdriver.common.service
|
|
|
|
import selenium.webdriver.remote.webdriver
|
|
|
|
|
|
|
|
from .cdp import CDP
|
|
|
|
from .options import ChromeOptions
|
|
|
|
from .patcher import IS_POSIX
|
|
|
|
from .patcher import Patcher
|
|
|
|
from .reactor import Reactor
|
2021-12-22 07:07:27 -07:00
|
|
|
from .dprocess import start_detached
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
__all__ = (
|
|
|
|
"Chrome",
|
|
|
|
"ChromeOptions",
|
|
|
|
"Patcher",
|
|
|
|
"Reactor",
|
|
|
|
"CDP",
|
|
|
|
"find_chrome_executable",
|
|
|
|
)
|
|
|
|
|
|
|
|
logger = logging.getLogger("uc")
|
|
|
|
logger.setLevel(logging.getLogger().getEffectiveLevel())
|
|
|
|
|
|
|
|
|
|
|
|
class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
|
|
"""
|
|
|
|
|
|
|
|
Controls the ChromeDriver and allows you to drive the browser.
|
|
|
|
|
|
|
|
The webdriver file will be downloaded by this module automatically,
|
|
|
|
you do not need to specify this. however, you may if you wish.
|
|
|
|
|
|
|
|
Attributes
|
|
|
|
----------
|
|
|
|
|
|
|
|
Methods
|
|
|
|
-------
|
|
|
|
|
|
|
|
reconnect()
|
|
|
|
|
|
|
|
this can be useful in case of heavy detection methods
|
|
|
|
-stops the chromedriver service which runs in the background
|
|
|
|
-starts the chromedriver service which runs in the background
|
|
|
|
-recreate session
|
|
|
|
|
|
|
|
|
|
|
|
start_session(capabilities=None, browser_profile=None)
|
|
|
|
|
|
|
|
differentiates from the regular method in that it does not
|
|
|
|
require a capabilities argument. The capabilities are automatically
|
|
|
|
recreated from the options at creation time.
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------
|
|
|
|
NOTE:
|
|
|
|
Chrome has everything included to work out of the box.
|
|
|
|
it does not `need` customizations.
|
|
|
|
any customizations MAY lead to trigger bot migitation systems.
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------
|
|
|
|
"""
|
|
|
|
|
|
|
|
_instances = set()
|
|
|
|
session_id = None
|
2021-12-22 07:07:27 -07:00
|
|
|
debug = False
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
2021-12-21 09:31:04 -07:00
|
|
|
user_data_dir=None,
|
2021-12-21 09:42:09 -07:00
|
|
|
browser_executable_path=None,
|
2021-12-15 21:53:41 -07:00
|
|
|
port=0,
|
|
|
|
options=None,
|
|
|
|
enable_cdp_events=False,
|
|
|
|
service_args=None,
|
|
|
|
desired_capabilities=None,
|
|
|
|
service_log_path=None,
|
2021-12-22 07:07:27 -07:00
|
|
|
keep_alive=True,
|
2021-12-15 21:53:41 -07:00
|
|
|
log_level=0,
|
|
|
|
headless=False,
|
|
|
|
version_main=None,
|
|
|
|
patcher_force_close=False,
|
2021-12-22 07:07:27 -07:00
|
|
|
suppress_welcome=True,
|
|
|
|
debug=False,
|
2021-12-21 09:31:04 -07:00
|
|
|
**kw
|
2021-12-15 21:53:41 -07:00
|
|
|
):
|
|
|
|
"""
|
|
|
|
Creates a new instance of the chrome driver.
|
|
|
|
|
|
|
|
Starts the service and then creates new instance of chrome driver.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
2021-12-22 07:07:27 -07:00
|
|
|
|
2021-12-21 09:31:04 -07:00
|
|
|
user_data_dir: str , optional, default: None (creates temp profile)
|
|
|
|
if user_data_dir is a path to a valid chrome profile directory, use it,
|
|
|
|
and turn off automatic removal mechanism at exit.
|
2021-12-22 07:07:27 -07:00
|
|
|
|
2021-12-21 09:42:09 -07:00
|
|
|
browser_executable_path: str, optional, default: None - use find_chrome_executable
|
2021-12-22 07:07:27 -07:00
|
|
|
Path to the browser executable.
|
2021-12-21 09:42:09 -07:00
|
|
|
If not specified, make sure the executable's folder is in $PATH
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
port: int, optional, default: 0
|
|
|
|
port you would like the service to run, if left as 0, a free port will be found.
|
|
|
|
|
|
|
|
options: ChromeOptions, optional, default: None - automatic useful defaults
|
|
|
|
this takes an instance of ChromeOptions, mainly to customize browser behavior.
|
|
|
|
anything other dan the default, for example extensions or startup options
|
|
|
|
are not supported in case of failure, and can probably lowers your undetectability.
|
|
|
|
|
|
|
|
enable_cdp_events: bool, default: False
|
|
|
|
:: currently for chrome only
|
|
|
|
this enables the handling of wire messages
|
|
|
|
when enabled, you can subscribe to CDP events by using:
|
|
|
|
|
|
|
|
driver.add_cdp_listener("Network.dataReceived", yourcallback)
|
|
|
|
# yourcallback is an callable which accepts exactly 1 dict as parameter
|
|
|
|
|
|
|
|
service_args: list of str, optional, default: None
|
|
|
|
arguments to pass to the driver service
|
|
|
|
|
|
|
|
desired_capabilities: dict, optional, default: None - auto from config
|
|
|
|
Dictionary object with non-browser specific capabilities only, such as "item" or "loggingPref".
|
|
|
|
|
|
|
|
service_log_path: str, optional, default: None
|
|
|
|
path to log information from the driver.
|
|
|
|
|
|
|
|
keep_alive: bool, optional, default: True
|
|
|
|
Whether to configure ChromeRemoteConnection to use HTTP keep-alive.
|
|
|
|
|
|
|
|
log_level: int, optional, default: adapts to python global log level
|
|
|
|
|
|
|
|
headless: bool, optional, default: False
|
|
|
|
can also be specified in the options instance.
|
|
|
|
Specify whether you want to use the browser in headless mode.
|
|
|
|
warning: this lowers undetectability and not fully supported.
|
|
|
|
|
|
|
|
version_main: int, optional, default: None (=auto)
|
|
|
|
if you, for god knows whatever reason, use
|
|
|
|
an older version of Chrome. You can specify it's full rounded version number
|
|
|
|
here. Example: 87 for all versions of 87
|
|
|
|
|
|
|
|
patcher_force_close: bool, optional, default: False
|
|
|
|
instructs the patcher to do whatever it can to access the chromedriver binary
|
|
|
|
if the file is locked, it will force shutdown all instances.
|
|
|
|
setting it is not recommended, unless you know the implications and think
|
|
|
|
you might need it.
|
|
|
|
|
2021-12-22 07:07:27 -07:00
|
|
|
suppress_welcome: bool, optional , default: True
|
|
|
|
a "welcome" alert might show up on *nix-like systems asking whether you want to set
|
|
|
|
chrome as your default browser, and if you want to send even more data to google.
|
|
|
|
now, in case you are nag-fetishist, or a diagnostics data feeder to google, you can set this to False.
|
|
|
|
Note: if you don't handle the nag screen in time, the browser loses it's connection and throws an Exception.
|
|
|
|
|
|
|
|
"""
|
|
|
|
self.debug = debug
|
2021-12-15 21:53:41 -07:00
|
|
|
patcher = Patcher(
|
2021-12-21 09:42:09 -07:00
|
|
|
executable_path=None,
|
2021-12-15 21:53:41 -07:00
|
|
|
force=patcher_force_close,
|
|
|
|
version_main=version_main,
|
|
|
|
)
|
|
|
|
patcher.auto()
|
|
|
|
|
|
|
|
if not options:
|
|
|
|
options = ChromeOptions()
|
|
|
|
|
|
|
|
try:
|
|
|
|
if hasattr(options, "_session") and options._session is not None:
|
|
|
|
# prevent reuse of options,
|
|
|
|
# as it just appends arguments, not replace them
|
|
|
|
# you'll get conflicts starting chrome
|
|
|
|
raise RuntimeError("you cannot reuse the ChromeOptions object")
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
options._session = self
|
|
|
|
|
|
|
|
debug_port = selenium.webdriver.common.service.utils.free_port()
|
|
|
|
debug_host = "127.0.0.1"
|
|
|
|
|
|
|
|
if not options.debugger_address:
|
|
|
|
options.debugger_address = "%s:%d" % (debug_host, debug_port)
|
|
|
|
|
|
|
|
if enable_cdp_events:
|
|
|
|
options.set_capability(
|
|
|
|
"goog:loggingPrefs", {"performance": "ALL", "browser": "ALL"}
|
|
|
|
)
|
|
|
|
|
|
|
|
options.add_argument("--remote-debugging-host=%s" % debug_host)
|
|
|
|
options.add_argument("--remote-debugging-port=%s" % debug_port)
|
|
|
|
|
2021-12-21 09:31:04 -07:00
|
|
|
language, keep_user_data_dir = None, bool(user_data_dir)
|
|
|
|
|
|
|
|
# see if a custom user profile is specified in options
|
2021-12-15 21:53:41 -07:00
|
|
|
for arg in options.arguments:
|
|
|
|
|
|
|
|
if "lang" in arg:
|
|
|
|
m = re.search("(?:--)?lang(?:[ =])?(.*)", arg)
|
|
|
|
try:
|
|
|
|
language = m[1]
|
|
|
|
except IndexError:
|
|
|
|
logger.debug("will set the language to en-US,en;q=0.9")
|
|
|
|
language = "en-US,en;q=0.9"
|
|
|
|
|
|
|
|
if "user-data-dir" in arg:
|
|
|
|
m = re.search("(?:--)?user-data-dir(?:[ =])?(.*)", arg)
|
|
|
|
try:
|
|
|
|
user_data_dir = m[1]
|
|
|
|
logger.debug(
|
|
|
|
"user-data-dir found in user argument %s => %s" % (arg, m[1])
|
|
|
|
)
|
|
|
|
keep_user_data_dir = True
|
|
|
|
|
|
|
|
except IndexError:
|
|
|
|
logger.debug(
|
|
|
|
"no user data dir could be extracted from supplied argument %s "
|
|
|
|
% arg
|
|
|
|
)
|
|
|
|
|
|
|
|
if not user_data_dir:
|
|
|
|
|
2021-12-22 07:07:27 -07:00
|
|
|
# backward compatiblity
|
|
|
|
# check if an old uc.ChromeOptions is used, and extract the user data dir
|
|
|
|
|
|
|
|
if hasattr(options, "user_data_dir") and getattr(
|
|
|
|
options, "user_data_dir", None
|
|
|
|
):
|
|
|
|
import warnings
|
|
|
|
|
|
|
|
warnings.warn(
|
|
|
|
"using ChromeOptions.user_data_dir might stop working in future versions."
|
|
|
|
"use uc.Chrome(user_data_dir='/xyz/some/data') in case you need existing profile folder"
|
|
|
|
)
|
2021-12-15 21:53:41 -07:00
|
|
|
options.add_argument("--user-data-dir=%s" % options.user_data_dir)
|
|
|
|
keep_user_data_dir = True
|
|
|
|
logger.debug(
|
|
|
|
"user_data_dir property found in options object: %s" % user_data_dir
|
|
|
|
)
|
|
|
|
|
|
|
|
else:
|
|
|
|
user_data_dir = os.path.normpath(tempfile.mkdtemp())
|
|
|
|
keep_user_data_dir = False
|
|
|
|
arg = "--user-data-dir=%s" % user_data_dir
|
|
|
|
options.add_argument(arg)
|
|
|
|
logger.debug(
|
|
|
|
"created a temporary folder in which the user-data (profile) will be stored during this\n"
|
|
|
|
"session, and added it to chrome startup arguments: %s" % arg
|
|
|
|
)
|
|
|
|
|
|
|
|
if not language:
|
|
|
|
try:
|
|
|
|
import locale
|
|
|
|
|
|
|
|
language = locale.getdefaultlocale()[0].replace("_", "-")
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
if not language:
|
|
|
|
language = "en-US"
|
|
|
|
|
|
|
|
options.add_argument("--lang=%s" % language)
|
2021-12-22 07:07:27 -07:00
|
|
|
|
2021-12-15 21:53:41 -07:00
|
|
|
if not options.binary_location:
|
2021-12-22 07:07:27 -07:00
|
|
|
options.binary_location = (
|
|
|
|
browser_executable_path or find_chrome_executable()
|
|
|
|
)
|
|
|
|
|
|
|
|
self._delay = 3
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
self.user_data_dir = user_data_dir
|
|
|
|
self.keep_user_data_dir = keep_user_data_dir
|
|
|
|
|
2021-12-22 07:07:27 -07:00
|
|
|
if suppress_welcome:
|
|
|
|
options.arguments.extend(["--no-default-browser-check", "--no-first-run"])
|
2021-12-15 21:53:41 -07:00
|
|
|
if headless or options.headless:
|
|
|
|
options.headless = True
|
|
|
|
options.add_argument("--window-size=1920,1080")
|
|
|
|
options.add_argument("--start-maximized")
|
|
|
|
options.add_argument("--no-sandbox")
|
|
|
|
# fixes "could not connect to chrome" error when running
|
|
|
|
# on linux using privileged user like root (which i don't recommend)
|
|
|
|
|
|
|
|
options.add_argument(
|
|
|
|
"--log-level=%d" % log_level
|
|
|
|
or divmod(logging.getLogger().getEffectiveLevel(), 10)[0]
|
|
|
|
)
|
|
|
|
|
|
|
|
# fix exit_type flag to prevent tab-restore nag
|
|
|
|
try:
|
|
|
|
with open(
|
|
|
|
os.path.join(user_data_dir, "Default/Preferences"),
|
|
|
|
encoding="latin1",
|
|
|
|
mode="r+",
|
|
|
|
) as fs:
|
|
|
|
config = json.load(fs)
|
|
|
|
if config["profile"]["exit_type"] is not None:
|
|
|
|
# fixing the restore-tabs-nag
|
|
|
|
config["profile"]["exit_type"] = None
|
|
|
|
fs.seek(0, 0)
|
|
|
|
json.dump(config, fs)
|
|
|
|
logger.debug("fixed exit_type flag")
|
|
|
|
except Exception as e:
|
|
|
|
logger.debug("did not find a bad exit_type flag ")
|
|
|
|
|
|
|
|
self.options = options
|
|
|
|
|
|
|
|
if not desired_capabilities:
|
|
|
|
desired_capabilities = options.to_capabilities()
|
|
|
|
|
|
|
|
self.browser_pid = start_detached(options.binary_location, *options.arguments)
|
|
|
|
|
|
|
|
super(Chrome, self).__init__(
|
|
|
|
executable_path=patcher.executable_path,
|
|
|
|
port=port,
|
|
|
|
options=options,
|
|
|
|
service_args=service_args,
|
|
|
|
desired_capabilities=desired_capabilities,
|
|
|
|
service_log_path=service_log_path,
|
|
|
|
keep_alive=keep_alive,
|
|
|
|
)
|
2021-12-22 07:07:27 -07:00
|
|
|
|
2021-12-15 21:53:41 -07:00
|
|
|
self.reactor = None
|
|
|
|
|
2021-12-22 07:07:27 -07:00
|
|
|
if enable_cdp_events:
|
2021-12-15 21:53:41 -07:00
|
|
|
if logging.getLogger().getEffectiveLevel() == logging.DEBUG:
|
|
|
|
logging.getLogger(
|
|
|
|
"selenium.webdriver.remote.remote_connection"
|
|
|
|
).setLevel(20)
|
|
|
|
reactor = Reactor(self)
|
|
|
|
reactor.start()
|
|
|
|
self.reactor = reactor
|
|
|
|
|
|
|
|
if options.headless:
|
|
|
|
self._configure_headless()
|
|
|
|
|
2021-12-22 07:07:27 -07:00
|
|
|
def __getattribute__(self, item):
|
|
|
|
if not super().__getattribute__("debug"):
|
|
|
|
return super().__getattribute__(item)
|
|
|
|
else:
|
|
|
|
import inspect
|
|
|
|
|
|
|
|
original = super().__getattribute__(item)
|
|
|
|
if inspect.ismethod(original) and not inspect.isclass(original):
|
|
|
|
|
|
|
|
def newfunc(*args, **kwargs):
|
|
|
|
logger.debug(
|
|
|
|
"calling %s with args %s and kwargs %s\n"
|
|
|
|
% (original.__qualname__, args, kwargs)
|
|
|
|
)
|
|
|
|
return original(*args, **kwargs)
|
|
|
|
|
|
|
|
return newfunc
|
|
|
|
return original
|
|
|
|
|
|
|
|
# @property
|
|
|
|
# def switch_to(self):
|
|
|
|
# def callback():
|
|
|
|
# self.get(self.current_url)
|
|
|
|
# try:
|
|
|
|
# return super().switch_to
|
|
|
|
# finally:
|
|
|
|
# threading.Timer(.1, callback).start()
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
def _configure_headless(self):
|
|
|
|
|
|
|
|
orig_get = self.get
|
|
|
|
logger.info("setting properties for headless")
|
|
|
|
|
|
|
|
def get_wrapped(*args, **kwargs):
|
|
|
|
if self.execute_script("return navigator.webdriver"):
|
|
|
|
logger.info("patch navigator.webdriver")
|
|
|
|
self.execute_cdp_cmd(
|
|
|
|
"Page.addScriptToEvaluateOnNewDocument",
|
|
|
|
{
|
|
|
|
"source": """
|
|
|
|
|
|
|
|
Object.defineProperty(window, 'navigator', {
|
|
|
|
value: new Proxy(navigator, {
|
|
|
|
has: (target, key) => (key === 'webdriver' ? false : key in target),
|
|
|
|
get: (target, key) =>
|
|
|
|
key === 'webdriver' ?
|
|
|
|
false :
|
|
|
|
typeof target[key] === 'function' ?
|
|
|
|
target[key].bind(target) :
|
|
|
|
target[key]
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
"""
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
logger.info("patch user-agent string")
|
|
|
|
self.execute_cdp_cmd(
|
|
|
|
"Network.setUserAgentOverride",
|
|
|
|
{
|
|
|
|
"userAgent": self.execute_script(
|
|
|
|
"return navigator.userAgent"
|
|
|
|
).replace("Headless", "")
|
|
|
|
},
|
|
|
|
)
|
|
|
|
self.execute_cdp_cmd(
|
|
|
|
"Page.addScriptToEvaluateOnNewDocument",
|
|
|
|
{
|
|
|
|
"source": """
|
|
|
|
Object.defineProperty(navigator, 'maxTouchPoints', {
|
|
|
|
get: () => 1
|
|
|
|
})"""
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return orig_get(*args, **kwargs)
|
|
|
|
|
|
|
|
self.get = get_wrapped
|
|
|
|
|
|
|
|
def __dir__(self):
|
|
|
|
return object.__dir__(self)
|
|
|
|
|
|
|
|
def _get_cdc_props(self):
|
|
|
|
return self.execute_script(
|
|
|
|
"""
|
|
|
|
let objectToInspect = window,
|
|
|
|
result = [];
|
|
|
|
while(objectToInspect !== null)
|
|
|
|
{ result = result.concat(Object.getOwnPropertyNames(objectToInspect));
|
|
|
|
objectToInspect = Object.getPrototypeOf(objectToInspect); }
|
|
|
|
return result.filter(i => i.match(/.+_.+_(Array|Promise|Symbol)/ig))
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
def _hook_remove_cdc_props(self):
|
|
|
|
self.execute_cdp_cmd(
|
|
|
|
"Page.addScriptToEvaluateOnNewDocument",
|
|
|
|
{
|
|
|
|
"source": """
|
|
|
|
let objectToInspect = window,
|
|
|
|
result = [];
|
|
|
|
while(objectToInspect !== null)
|
|
|
|
{ result = result.concat(Object.getOwnPropertyNames(objectToInspect));
|
|
|
|
objectToInspect = Object.getPrototypeOf(objectToInspect); }
|
|
|
|
result.forEach(p => p.match(/.+_.+_(Array|Promise|Symbol)/ig)
|
|
|
|
&&delete window[p]&&console.log('removed',p))
|
|
|
|
"""
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
def get(self, url):
|
|
|
|
if self._get_cdc_props():
|
|
|
|
self._hook_remove_cdc_props()
|
|
|
|
return super().get(url)
|
|
|
|
|
|
|
|
def add_cdp_listener(self, event_name, callback):
|
|
|
|
if (
|
|
|
|
self.reactor
|
|
|
|
and self.reactor is not None
|
|
|
|
and isinstance(self.reactor, Reactor)
|
|
|
|
):
|
|
|
|
self.reactor.add_event_handler(event_name, callback)
|
|
|
|
return self.reactor.handlers
|
|
|
|
return False
|
|
|
|
|
|
|
|
def clear_cdp_listeners(self):
|
|
|
|
if self.reactor and isinstance(self.reactor, Reactor):
|
|
|
|
self.reactor.handlers.clear()
|
|
|
|
|
|
|
|
def tab_new(self, url: str):
|
|
|
|
"""
|
|
|
|
this opens a url in a new tab.
|
|
|
|
apparently, that passes all tests directly!
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
url
|
|
|
|
|
|
|
|
Returns
|
|
|
|
-------
|
|
|
|
|
|
|
|
"""
|
|
|
|
if not hasattr(self, "cdp"):
|
|
|
|
from .cdp import CDP
|
|
|
|
|
|
|
|
self.cdp = CDP(self.options)
|
|
|
|
self.cdp.tab_new(url)
|
|
|
|
|
|
|
|
def reconnect(self, timeout=0.1):
|
|
|
|
try:
|
|
|
|
self.service.stop()
|
|
|
|
except Exception as e:
|
|
|
|
logger.debug(e)
|
|
|
|
time.sleep(timeout)
|
|
|
|
try:
|
|
|
|
self.service.start()
|
|
|
|
except Exception as e:
|
|
|
|
logger.debug(e)
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.start_session()
|
|
|
|
except Exception as e:
|
|
|
|
logger.debug(e)
|
|
|
|
|
|
|
|
def start_session(self, capabilities=None, browser_profile=None):
|
|
|
|
if not capabilities:
|
|
|
|
capabilities = self.options.to_capabilities()
|
2021-12-22 07:07:27 -07:00
|
|
|
super(selenium.webdriver.chrome.webdriver.WebDriver, self).start_session(
|
|
|
|
capabilities, browser_profile
|
|
|
|
)
|
|
|
|
# super(Chrome, self).start_session(capabilities, browser_profile)
|
2021-12-15 21:53:41 -07:00
|
|
|
|
|
|
|
def quit(self):
|
|
|
|
logger.debug("closing webdriver")
|
2021-12-23 09:10:04 -07:00
|
|
|
if hasattr(self, 'service') and getattr(self.service, 'process', None):
|
|
|
|
self.service.process.kill()
|
2021-12-15 21:53:41 -07:00
|
|
|
try:
|
|
|
|
if self.reactor and isinstance(self.reactor, Reactor):
|
2021-12-22 07:07:27 -07:00
|
|
|
logger.debug("shutting down reactor")
|
2021-12-15 21:53:41 -07:00
|
|
|
self.reactor.event.set()
|
|
|
|
except Exception: # noqa
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
logger.debug("killing browser")
|
2021-12-22 07:07:27 -07:00
|
|
|
os.kill(self.browser_pid, 15)
|
2021-12-15 21:53:41 -07:00
|
|
|
# self.browser.terminate()
|
|
|
|
# self.browser.wait(1)
|
|
|
|
|
|
|
|
except TimeoutError as e:
|
|
|
|
logger.debug(e, exc_info=True)
|
|
|
|
except Exception: # noqa
|
|
|
|
pass
|
|
|
|
|
|
|
|
if (
|
|
|
|
hasattr(self, "keep_user_data_dir")
|
|
|
|
and hasattr(self, "user_data_dir")
|
|
|
|
and not self.keep_user_data_dir
|
|
|
|
):
|
|
|
|
for _ in range(5):
|
|
|
|
try:
|
2021-12-22 07:07:27 -07:00
|
|
|
|
2021-12-15 21:53:41 -07:00
|
|
|
shutil.rmtree(self.user_data_dir, ignore_errors=False)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
2021-12-22 07:07:27 -07:00
|
|
|
except (RuntimeError, OSError, PermissionError) as e:
|
2021-12-15 21:53:41 -07:00
|
|
|
logger.debug(
|
2021-12-22 07:07:27 -07:00
|
|
|
"When removing the temp profile, a %s occured: %s\nretrying..."
|
|
|
|
% (e.__class__.__name__, e)
|
2021-12-15 21:53:41 -07:00
|
|
|
)
|
|
|
|
else:
|
2021-12-22 07:07:27 -07:00
|
|
|
logger.debug("successfully removed %s" % self.user_data_dir)
|
2021-12-15 21:53:41 -07:00
|
|
|
break
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
try:
|
|
|
|
self.service.process.kill()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
self.quit()
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
try:
|
|
|
|
curframe = inspect.currentframe()
|
|
|
|
callframe = inspect.getouterframes(curframe, 2)
|
|
|
|
caller = callframe[1][3]
|
|
|
|
logging.getLogger(__name__).debug("__enter__ caller: %s" % caller)
|
|
|
|
if caller == "get":
|
|
|
|
return
|
|
|
|
except (AttributeError, ValueError, KeyError, OSError) as e:
|
|
|
|
logging.getLogger(__name__).debug(e)
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
|
|
|
|
|
|
self.service.stop()
|
|
|
|
time.sleep(self._delay)
|
|
|
|
self.service.start()
|
|
|
|
self.start_session()
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self.options.debugger_address)
|
|
|
|
|
|
|
|
|
|
|
|
def find_chrome_executable():
|
|
|
|
"""
|
|
|
|
Finds the chrome, chrome beta, chrome canary, chromium executable
|
|
|
|
|
|
|
|
Returns
|
|
|
|
-------
|
|
|
|
executable_path : str
|
|
|
|
the full file path to found executable
|
|
|
|
|
|
|
|
"""
|
|
|
|
candidates = set()
|
|
|
|
if IS_POSIX:
|
|
|
|
for item in os.environ.get("PATH").split(os.pathsep):
|
2021-12-21 09:31:04 -07:00
|
|
|
for subitem in ("google-chrome", "chromium", "chromium-browser", "chrome"):
|
2021-12-15 21:53:41 -07:00
|
|
|
candidates.add(os.sep.join((item, subitem)))
|
|
|
|
if "darwin" in sys.platform:
|
|
|
|
candidates.update(
|
|
|
|
["/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"]
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
for item in map(
|
|
|
|
os.environ.get, ("PROGRAMFILES", "PROGRAMFILES(X86)", "LOCALAPPDATA")
|
|
|
|
):
|
|
|
|
for subitem in (
|
|
|
|
"Google/Chrome/Application",
|
|
|
|
"Google/Chrome Beta/Application",
|
|
|
|
"Google/Chrome Canary/Application",
|
|
|
|
):
|
|
|
|
candidates.add(os.sep.join((item, subitem, "chrome.exe")))
|
|
|
|
for candidate in candidates:
|
|
|
|
if os.path.exists(candidate) and os.access(candidate, os.X_OK):
|
|
|
|
return os.path.normpath(candidate)
|