-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NEW: prepare Selene to work with wdm > 3.8.6
- Loading branch information
Showing
5 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "selene" | ||
version = "2.0.0rc3post1" | ||
version = "2.0.0rc3post2" | ||
description = "User-oriented browser tests in Python (Selenide port)" | ||
authors = ["Iakiv Kramarenko <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -107,6 +107,7 @@ skip-string-normalization = 1 | |
import-outside-toplevel, | ||
too-many-locals, | ||
too-many-lines, | ||
too-many-branches, | ||
invalid-name, | ||
not-callable, | ||
unused-argument, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
from . import patch | ||
from webdriver_manager.core.utils import ChromeType as _ChromeType | ||
|
||
import webdriver_manager | ||
|
||
if webdriver_manager.__version__ == '3.8.6': | ||
from webdriver_manager.core.utils import ChromeType as _ChromeType | ||
else: | ||
from webdriver_manager.core.os_manager import ChromeType as _ChromeType | ||
|
||
ChromeType = _ChromeType |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters