We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a74c47 commit b72e144Copy full SHA for b72e144
tests/SeleniumTests/__init__.py
@@ -87,6 +87,7 @@ def test_download_file(self):
87
file_link = wait.until(
88
EC.element_to_be_clickable((By.LINK_TEXT, file_name))
89
)
90
+ driver.execute_script("arguments[0].scrollIntoView();", file_link)
91
file_link.click()
92
wait.until(
93
lambda d: str(d.get_downloadable_files()[0]).endswith(file_name)
tests/bootstrap.sh
@@ -7,7 +7,7 @@ if [ "${CI:-false}" = "false" ]; then
7
source docker-selenium-tests/bin/activate
8
fi
9
10
-python -m pip install selenium==4.18.0 \
+python -m pip install selenium==4.18.1 \
11
docker===6.1.3 \
12
| grep -v 'Requirement already satisfied'
13
0 commit comments