Skip to content

Dependencies and URL prefixes #1890

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 31, 2023
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 @@ -27,7 +27,7 @@ cssselect2==0.7.0
tinycss2==1.2.1
defusedxml==0.7.1
mkdocs==1.4.3
mkdocs-material==9.1.14
mkdocs-material==9.1.15
mkdocs-exclude-search==0.6.5
mkdocs-simple-hooks==0.1.5
mkdocs-material-extensions==1.1.1
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pytest-forked==1.4.0;python_version<"3.7"
pytest-forked==1.6.0;python_version>="3.7"
pytest-html==2.0.1
pytest-metadata==1.11.0;python_version<"3.7"
pytest-metadata==2.0.4;python_version>="3.7"
pytest-metadata==3.0.0;python_version>="3.7"
pytest-ordering==0.6
pytest-rerunfailures==10.3;python_version<"3.7"
pytest-rerunfailures==11.1.2;python_version>="3.7"
Expand Down Expand Up @@ -105,7 +105,7 @@ rich==13.3.5;python_version>="3.7"
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

coverage==6.2;python_version<"3.7"
coverage==7.2.6;python_version>="3.7"
coverage==7.2.7;python_version>="3.7"
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.14.10"
__version__ = "4.14.11"
5 changes: 3 additions & 2 deletions seleniumbase/fixtures/base_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -12610,11 +12610,12 @@ def __looks_like_a_page_url(self, url):
url.startswith("http:")
or url.startswith("https:")
or url.startswith("://")
or url.startswith("chrome:")
or url.startswith("about:")
or url.startswith("blob:")
or url.startswith("chrome:")
or url.startswith("data:")
or url.startswith("file:")
or url.startswith("edge:")
or url.startswith("file:")
or url.startswith("opera:")
or url.startswith("view-source:")
):
Expand Down
5 changes: 3 additions & 2 deletions seleniumbase/fixtures/page_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,12 @@ def is_valid_url(url):
if (
regex.match(url)
or url.startswith("about:")
or url.startswith("data:")
or url.startswith("blob:")
or url.startswith("chrome:")
or url.startswith("data:")
or url.startswith("edge:")
or url.startswith("opera:")
or url.startswith("file:")
or url.startswith("opera:")
):
return True
else:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
'pytest-forked==1.6.0;python_version>="3.7"',
"pytest-html==2.0.1", # Newer ones had issues
'pytest-metadata==1.11.0;python_version<"3.7"',
'pytest-metadata==2.0.4;python_version>="3.7"',
'pytest-metadata==3.0.0;python_version>="3.7"',
"pytest-ordering==0.6",
'pytest-rerunfailures==10.3;python_version<"3.7"',
'pytest-rerunfailures==11.1.2;python_version>="3.7"',
Expand Down Expand Up @@ -241,7 +241,7 @@
# Usage: coverage run -m pytest; coverage html; coverage report
"coverage": [
'coverage==6.2;python_version<"3.7"',
'coverage==7.2.6;python_version>="3.7"',
'coverage==7.2.7;python_version>="3.7"',
'pytest-cov==4.0.0;python_version<"3.7"',
'pytest-cov==4.1.0;python_version>="3.7"',
],
Expand Down