This commit is contained in:
parent
9f9bd66d79
commit
77a3c3020f
10
README.md
10
README.md
|
@ -11,6 +11,16 @@ Automatically downloads the driver binary and patches it.
|
|||
* Python 3.6++**
|
||||
|
||||
|
||||
### 3.0.4 changes ####
|
||||
- change process creation behavior to be fully detached
|
||||
- changed .get(url) method to always use the contextmanager
|
||||
- changed .get(url) method to use cdp under the hood.
|
||||
|
||||
... the `with` statement is not necessary anymore ..
|
||||
|
||||
- todo: work towards asyncification and selenium 4
|
||||
|
||||
|
||||
**July 2021: Currently busy implementing selenium 4 for undetected-chromedriver**
|
||||
|
||||
**newsflash: https://github.com/ultrafunkamsterdam/undetected-chromedriver/pull/255**
|
||||
|
|
|
@ -34,7 +34,7 @@ from . import options
|
|||
|
||||
ChromeOptionsV2 = v2.ChromeOptions
|
||||
logger = logging.getLogger(__name__)
|
||||
__version__ = "3.0.3"
|
||||
__version__ = "3.0.4"
|
||||
|
||||
|
||||
TARGET_VERSION = 0
|
||||
|
|
Loading…
Reference in New Issue