Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mkdocs_build/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lxml==5.1.0
pyquery==2.0.0
readtime==3.0.0
mkdocs==1.5.3
mkdocs-material==9.5.5
mkdocs-material==9.5.6
mkdocs-exclude-search==0.6.6
mkdocs-simple-hooks==0.1.5
mkdocs-material-extensions==1.3.1
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ filelock>=3.13.1;python_version>="3.8"
platformdirs>=4.0.0;python_version<"3.8"
platformdirs>=4.1.0;python_version>="3.8"
typing-extensions>=4.9.0;python_version>="3.8"
parse>=1.20.0
parse>=1.20.1
parse-type>=0.6.2
pyyaml>=6.0.1
six==1.16.0
Expand Down Expand Up @@ -38,7 +38,8 @@ iniconfig==2.0.0
pluggy==1.2.0;python_version<"3.8"
pluggy==1.4.0;python_version>="3.8"
py==1.11.0
pytest==7.4.4
pytest==7.4.4;python_version<"3.8"
pytest==8.0.0;python_version>="3.8"
pytest-html==2.0.1
pytest-metadata==3.0.0
pytest-ordering==0.6
Expand Down Expand Up @@ -67,7 +68,7 @@ rich==13.7.0

coverage==6.2;python_version<"3.7"
coverage==7.2.7;python_version>="3.7" and python_version<"3.8"
coverage==7.4.0;python_version>="3.8"
coverage==7.4.1;python_version>="3.8"
pytest-cov==4.0.0;python_version<"3.7"
pytest-cov==4.1.0;python_version>="3.7"
flake8==5.0.4;python_version<"3.9"
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.23.1"
__version__ = "4.23.2"
2 changes: 1 addition & 1 deletion seleniumbase/fixtures/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ class Mobile:


class UC:
RECONNECT_TIME = 2.28 # Seconds
RECONNECT_TIME = 2.32 # Seconds


class ValidBrowsers:
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
'platformdirs>=4.0.0;python_version<"3.8"',
'platformdirs>=4.1.0;python_version>="3.8"',
'typing-extensions>=4.9.0;python_version>="3.8"',
'parse>=1.20.0',
'parse>=1.20.1',
'parse-type>=0.6.2',
'pyyaml>=6.0.1',
"six==1.16.0",
Expand Down Expand Up @@ -171,7 +171,8 @@
'pluggy==1.2.0;python_version<"3.8"',
'pluggy==1.4.0;python_version>="3.8"',
"py==1.11.0",
'pytest==7.4.4',
'pytest==7.4.4;python_version<"3.8"',
'pytest==8.0.0;python_version>="3.8"',
"pytest-html==2.0.1", # Newer ones had issues
'pytest-metadata==3.0.0',
"pytest-ordering==0.6",
Expand Down Expand Up @@ -208,7 +209,7 @@
# Usage: coverage run -m pytest; coverage html; coverage report
"coverage": [
'coverage==7.2.7;python_version<"3.8"',
'coverage==7.4.0;python_version>="3.8"',
'coverage==7.4.1;python_version>="3.8"',
'pytest-cov==4.1.0',
],
# pip install -e .[flake8]
Expand Down