Skip to content

Commit c0c694a

Browse files
authored
Merge pull request #1843 from seleniumbase/dependencies-and-a-bug-fix
Refresh dependencies and fix a bug
2 parents 299cc2c + 128417e commit c0c694a

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

examples/hack_the_planet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ def test_all_your_base_are_belong_to_us(self):
180180
self.highlight("#ctitle", loops=7, scroll=False)
181181

182182
self.open("https://www.nintendo.com/whatsnew/")
183-
self.set_text_content("h1", aybabtu)
184-
self.highlight("h1", loops=10, scroll=False)
183+
self.set_text_content("h2", aybabtu)
184+
self.highlight("h2", loops=10, scroll=False)
185185

186186
if not self.headless:
187187
self.open("https://support.gog.com/hc/en-us?product=gog")

examples/test_download_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_download_chromedriver_notes(self):
2222

2323
def test_download_files_from_pypi(self):
2424
self.open("https://pypi.org/project/sbvirtualdisplay/#files")
25-
self.assert_element('[data-clipboard-target="#pip-command"]')
25+
self.assert_element("span#pip-command")
2626
self.assert_text("Download files", "div#files h2.page-title")
2727
self.assert_text("Download files", "a#files-tab")
2828
pkg_header = self.get_text("h1.package-header__name").strip()

examples/test_download_images.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class DownloadImages(BaseCase):
88
def test_download_images_directly(self):
9-
self.open("seleniumbase.github.io/examples/chart_maker/ReadMe")
9+
self.open("seleniumbase.io/examples/chart_maker/ReadMe")
1010
img_elements_with_src = self.find_elements("img[src]")
1111
unique_src_values = []
1212
for img in img_elements_with_src:
@@ -29,7 +29,7 @@ def test_download_images_via_screenshot(self):
2929
self.open("about:blank")
3030
print("Skipping test in Recorder Mode.")
3131
self.skip("Skipping test in Recorder Mode.")
32-
self.open("seleniumbase.github.io/error_page/")
32+
self.open("seleniumbase.io/error_page/")
3333
img_elements_with_src = self.find_elements("img[src]")
3434
unique_src_values = []
3535
for img in img_elements_with_src:

mkdocs_build/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ click==8.1.3
1414
ghp-import==2.1.0
1515
readme-renderer==37.3
1616
pymdown-extensions==9.11
17-
importlib-metadata==6.3.0
17+
importlib-metadata==6.4.1
1818
pipdeptree==2.7.0
1919
bleach==6.0.0
2020
lunr==0.6.2
2121
nltk==3.8.1
2222
tornado==6.2
2323
watchdog==3.0.0
24-
cairocffi==1.5.0
24+
cairocffi==1.5.1
2525
cairosvg==2.7.0
2626
cssselect2==0.7.0
2727
tinycss2==1.2.1

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pip>=21.3.1;python_version<"3.7"
2-
pip>=23.0.1;python_version>="3.7"
2+
pip>=23.1;python_version>="3.7"
33
packaging>=21.3;python_version<"3.7"
4-
packaging>=23.0;python_version>="3.7"
4+
packaging>=23.1;python_version>="3.7"
55
setuptools>=59.6.0;python_version<"3.7"
66
setuptools>=67.6.1;python_version>="3.7"
77
keyring>=23.4.1;python_version<"3.8"
@@ -59,7 +59,7 @@ iniconfig==2.0.0;python_version>="3.7"
5959
pluggy==1.0.0
6060
py==1.11.0
6161
pytest==7.0.1;python_version<"3.7"
62-
pytest==7.3.0;python_version>="3.7"
62+
pytest==7.3.1;python_version>="3.7"
6363
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
@@ -78,7 +78,7 @@ soupsieve==2.3.2.post1;python_version<"3.7"
7878
soupsieve==2.4;python_version>="3.7"
7979
beautifulsoup4==4.12.2
8080
cryptography==36.0.2;python_version<"3.7"
81-
cryptography==40.0.1;python_version>="3.7"
81+
cryptography==40.0.2;python_version>="3.7"
8282
pygments==2.14.0;python_version<"3.7"
8383
pygments==2.15.0;python_version>="3.7"
8484
pyreadline3==3.4.1;platform_system=="Windows"
@@ -99,7 +99,7 @@ commonmark==0.9.1;python_version<"3.7"
9999
markdown-it-py==2.2.0;python_version>="3.7"
100100
mdurl==0.1.2;python_version>="3.7"
101101
rich==12.6.0;python_version<"3.7"
102-
rich==13.3.3;python_version>="3.7"
102+
rich==13.3.4;python_version>="3.7"
103103

104104
# --- Testing Requirements --- #
105105
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

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.13.24"
2+
__version__ = "4.13.25"

seleniumbase/core/browser_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2316,7 +2316,7 @@ def get_local_driver(
23162316
)
23172317
if not enable_sync:
23182318
edge_options.add_argument("--disable-sync")
2319-
if guest_mode:
2319+
if guest_mode or IS_WINDOWS:
23202320
edge_options.add_argument("--guest")
23212321
if headless2:
23222322
try:

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@
123123
python_requires=">=3.6",
124124
install_requires=[
125125
'pip>=21.3.1;python_version<"3.7"',
126-
'pip>=23.0.1;python_version>="3.7"',
126+
'pip>=23.1;python_version>="3.7"',
127127
'packaging>=21.3;python_version<"3.7"',
128-
'packaging>=23.0;python_version>="3.7"',
128+
'packaging>=23.1;python_version>="3.7"',
129129
'setuptools>=59.6.0;python_version<"3.7"',
130130
'setuptools>=67.6.1;python_version>="3.7"',
131131
'keyring>=23.4.1;python_version<"3.8"',
@@ -183,7 +183,7 @@
183183
"pluggy==1.0.0",
184184
"py==1.11.0",
185185
'pytest==7.0.1;python_version<"3.7"',
186-
'pytest==7.3.0;python_version>="3.7"',
186+
'pytest==7.3.1;python_version>="3.7"',
187187
'pytest-forked==1.4.0;python_version<"3.7"',
188188
'pytest-forked==1.6.0;python_version>="3.7"',
189189
"pytest-html==2.0.1", # Newer ones had issues
@@ -202,7 +202,7 @@
202202
'soupsieve==2.4;python_version>="3.7"',
203203
"beautifulsoup4==4.12.2",
204204
'cryptography==36.0.2;python_version<"3.7"',
205-
'cryptography==40.0.1;python_version>="3.7"',
205+
'cryptography==40.0.2;python_version>="3.7"',
206206
'pygments==2.14.0;python_version<"3.7"',
207207
'pygments==2.15.0;python_version>="3.7"',
208208
'pyreadline3==3.4.1;platform_system=="Windows"',
@@ -223,7 +223,7 @@
223223
'markdown-it-py==2.2.0;python_version>="3.7"', # For new "rich"
224224
'mdurl==0.1.2;python_version>="3.7"', # For new "rich"
225225
'rich==12.6.0;python_version<"3.7"',
226-
'rich==13.3.3;python_version>="3.7"',
226+
'rich==13.3.4;python_version>="3.7"',
227227
],
228228
extras_require={
229229
# pip install -e .[allure]

0 commit comments

Comments
 (0)