Skip to content

Commit 482cc16

Browse files
authored
Merge pull request #1890 from seleniumbase/dependencies-and-url-prefixes
Dependencies and URL prefixes
2 parents 8b8767e + 9cc43e4 commit 482cc16

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cssselect2==0.7.0
2727
tinycss2==1.2.1
2828
defusedxml==0.7.1
2929
mkdocs==1.4.3
30-
mkdocs-material==9.1.14
30+
mkdocs-material==9.1.15
3131
mkdocs-exclude-search==0.6.5
3232
mkdocs-simple-hooks==0.1.5
3333
mkdocs-material-extensions==1.1.1

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ pytest-forked==1.4.0;python_version<"3.7"
6464
pytest-forked==1.6.0;python_version>="3.7"
6565
pytest-html==2.0.1
6666
pytest-metadata==1.11.0;python_version<"3.7"
67-
pytest-metadata==2.0.4;python_version>="3.7"
67+
pytest-metadata==3.0.0;python_version>="3.7"
6868
pytest-ordering==0.6
6969
pytest-rerunfailures==10.3;python_version<"3.7"
7070
pytest-rerunfailures==11.1.2;python_version>="3.7"
@@ -105,7 +105,7 @@ rich==13.3.5;python_version>="3.7"
105105
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
106106

107107
coverage==6.2;python_version<"3.7"
108-
coverage==7.2.6;python_version>="3.7"
108+
coverage==7.2.7;python_version>="3.7"
109109
pytest-cov==4.0.0;python_version<"3.7"
110110
pytest-cov==4.1.0;python_version>="3.7"
111111
flake8==5.0.4;python_version<"3.9"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.14.10"
2+
__version__ = "4.14.11"

seleniumbase/fixtures/base_case.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12610,11 +12610,12 @@ def __looks_like_a_page_url(self, url):
1261012610
url.startswith("http:")
1261112611
or url.startswith("https:")
1261212612
or url.startswith("://")
12613-
or url.startswith("chrome:")
1261412613
or url.startswith("about:")
12614+
or url.startswith("blob:")
12615+
or url.startswith("chrome:")
1261512616
or url.startswith("data:")
12616-
or url.startswith("file:")
1261712617
or url.startswith("edge:")
12618+
or url.startswith("file:")
1261812619
or url.startswith("opera:")
1261912620
or url.startswith("view-source:")
1262012621
):

seleniumbase/fixtures/page_utils.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,12 @@ def is_valid_url(url):
117117
if (
118118
regex.match(url)
119119
or url.startswith("about:")
120-
or url.startswith("data:")
120+
or url.startswith("blob:")
121121
or url.startswith("chrome:")
122+
or url.startswith("data:")
122123
or url.startswith("edge:")
123-
or url.startswith("opera:")
124124
or url.startswith("file:")
125+
or url.startswith("opera:")
125126
):
126127
return True
127128
else:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
'pytest-forked==1.6.0;python_version>="3.7"',
189189
"pytest-html==2.0.1", # Newer ones had issues
190190
'pytest-metadata==1.11.0;python_version<"3.7"',
191-
'pytest-metadata==2.0.4;python_version>="3.7"',
191+
'pytest-metadata==3.0.0;python_version>="3.7"',
192192
"pytest-ordering==0.6",
193193
'pytest-rerunfailures==10.3;python_version<"3.7"',
194194
'pytest-rerunfailures==11.1.2;python_version>="3.7"',
@@ -241,7 +241,7 @@
241241
# Usage: coverage run -m pytest; coverage html; coverage report
242242
"coverage": [
243243
'coverage==6.2;python_version<"3.7"',
244-
'coverage==7.2.6;python_version>="3.7"',
244+
'coverage==7.2.7;python_version>="3.7"',
245245
'pytest-cov==4.0.0;python_version<"3.7"',
246246
'pytest-cov==4.1.0;python_version>="3.7"',
247247
],

0 commit comments

Comments
 (0)