-
Notifications
You must be signed in to change notification settings - Fork 79
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
Address Selenium warnings #1135
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
2c92287
Update requirements.txt
michplunkett 96a4fdd
Update requirements.txt
michplunkett a9eeea7
Move selenium to dev requirements
michplunkett 4c73274
Update test_functional.py
michplunkett 3bc2fe6
Update requirements.txt
michplunkett c63f0e0
Update conftest.py
michplunkett ae11143
Update conftest.py
michplunkett 8785be7
Update conftest.py
michplunkett 8da7c54
Update Dockerfile-test
michplunkett 0f44c48
Update Dockerfile-test
michplunkett 415f888
Update test_functional.py
michplunkett 7b50bb2
Update test_functional.py
michplunkett 0c9fd5e
Update test_functional.py
michplunkett 6377dae
Update requirements.txt
michplunkett 2c3e512
Update conftest.py
michplunkett 798e8d9
Revert "Update conftest.py"
michplunkett 1aa6284
Update conftest.py
michplunkett 0803880
Revert "Update conftest.py"
michplunkett File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,8 @@ RUN apt-get update && apt-get install -y xvfb firefox-esr libpq-dev python3-dev | |
apt-get install -y libsqlite3-0 && apt-get clean | ||
|
||
# install geckodriver | ||
ENV GECKODRIVER_VERSION="v0.26.0" | ||
ENV GECKODRIVER_SHA=d59ca434d8e41ec1e30dd7707b0c95171dd6d16056fb6db9c978449ad8b93cc0 | ||
ENV GECKODRIVER_VERSION="v0.35.0" | ||
ENV GECKODRIVER_SHA=ac26e9ba8f3b8ce0fbf7339b9c9020192f6dcfcbf04a2bcd2af80dfe6bb24260 | ||
Comment on lines
+17
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Driver: link michaelp@MacBook-Air-18 Downloads % shasum -a 256 geckodriver-v0.35.0-linux64.tar.gz
ac26e9ba8f3b8ce0fbf7339b9c9020192f6dcfcbf04a2bcd2af80dfe6bb24260 geckodriver-v0.35.0-linux64.tar.gz
michaelp@MacBook-Air-18 Downloads % |
||
ENV GECKODRIVER_BASE_URL="https://github.com/mozilla/geckodriver/releases/download" | ||
RUN curl ${CURL_FLAGS} \ | ||
${GECKODRIVER_BASE_URL}/${GECKODRIVER_VERSION}/geckodriver-${GECKODRIVER_VERSION}-linux64.tar.gz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,13 +56,12 @@ recommonmark==0.7.1 | |
requests~=2.31.0 | ||
rich~=13.4.2 | ||
s3transfer~=0.6.1 | ||
selenium~=4.10.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is only used in tests, so I moved it to |
||
six~=1.16.0 | ||
sphinx==7.1.2 | ||
SQLAlchemy==1.4.52 | ||
tornado~=6.4 | ||
trio==0.22.1 | ||
urllib3~=1.26.16 # This version is required for other packages to run | ||
urllib3==1.26.20 | ||
us==3.1.1 | ||
visitor~=0.1.3 | ||
webencodings~=0.5.1 | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making
find_element
syntax consistent.