config
AUTO = None
module-attribute
BrowserType = Literal['chrome', 'brave', 'auto']
module-attribute
PathLike = Union[str, pathlib.Path]
module-attribute
__all__ = ['Config', 'find_executable', 'temp_profile_dir', 'is_root', 'is_posix', 'PathLike']
module-attribute
is_posix = sys.platform.startswith(('darwin', 'cygwin', 'linux', 'linux2'))
module-attribute
logger = logging.getLogger(__name__)
module-attribute
Config
Config object
Source code in zendriver/core/config.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | |
autodiscover_targets = True
instance-attribute
browser_args: List[str]
property
browser_connection_max_tries = browser_connection_max_tries
instance-attribute
browser_connection_timeout = browser_connection_timeout
instance-attribute
browser_executable_path = browser_executable_path
instance-attribute
disable_webgl = disable_webgl
instance-attribute
disable_webrtc = disable_webrtc
instance-attribute
expert = expert
instance-attribute
headless = headless
instance-attribute
host = host
instance-attribute
lang = lang
instance-attribute
port = port
instance-attribute
sandbox = sandbox
instance-attribute
user_agent = user_agent
instance-attribute
user_data_dir: str
property
writable
Get the user data dir or lazily create a new one if unset.
Returns: str: User data directory (used for Chrome profile)
uses_custom_data_dir: bool
property
__call__()
Source code in zendriver/core/config.py
__init__(user_data_dir=AUTO, headless=False, browser_executable_path=AUTO, browser='auto', browser_args=AUTO, sandbox=True, lang=None, host=AUTO, port=AUTO, expert=AUTO, browser_connection_timeout=0.25, browser_connection_max_tries=10, user_agent=None, disable_webrtc=True, disable_webgl=False, **kwargs)
creates a config object. Can be called without any arguments to generate a best-practice config, which is recommended.
calling the object, eg : myconfig() , will return the list of arguments which are provided to the browser.
additional arguments can be added using the :py:obj:~add_argument method
Instances of this class are usually not instantiated by end users.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_data_dir
|
Optional[PathLike]
|
the data directory to use (must be unique if using multiple browsers) |
AUTO
|
headless
|
Optional[bool]
|
set to True for headless mode |
False
|
browser_executable_path
|
Optional[PathLike]
|
specify browser executable, instead of using autodetect |
AUTO
|
browser
|
BrowserType
|
which browser to use. Can be "chrome", "brave" or "auto". Default is "auto". |
'auto'
|
browser_args
|
Optional[List[str]]
|
forwarded to browser executable. eg : ["--some-chromeparam=somevalue", "some-other-param=someval"] |
AUTO
|
sandbox
|
Optional[bool]
|
disables sandbox |
True
|
lang
|
Optional[str]
|
language string to use other than the default "en-US,en;q=0.9" |
None
|
user_agent
|
Optional[str]
|
custom user-agent string |
None
|
expert
|
bool | None
|
when set to True, enabled "expert" mode. This conveys, the inclusion of parameters: --disable-web-security ----disable-site-isolation-trials, as well as some scripts and patching useful for debugging (for example, ensuring shadow-root is always in "open" mode) |
AUTO
|
kwargs
|
Any
|
|
{}
|
Source code in zendriver/core/config.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | |
__repr__()
Source code in zendriver/core/config.py
add_argument(arg)
Source code in zendriver/core/config.py
add_extension(extension_path)
adds an extension to load, you could point extension_path to a folder (containing the manifest), or extension file (crx)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
extension_path
|
PathLike
|
|
required |
Returns:
| Type | Description |
|---|---|
|
|
Source code in zendriver/core/config.py
find_binary(candidates)
Source code in zendriver/core/config.py
find_executable(browser='auto')
Finds the executable for the specified browser and returns its disk path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
browser
|
BrowserType
|
The browser to find. Can be "chrome", "brave" or "auto". |
'auto'
|
Returns:
| Type | Description |
|---|---|
PathLike
|
The path to the browser executable. |
Source code in zendriver/core/config.py
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | |
is_root()
helper function to determine if user trying to launch chrome under linux as root, which needs some alternative handling
Returns:
| Type | Description |
|---|---|
|
|