-
Notifications
You must be signed in to change notification settings - Fork 436
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
Removed strict version dependency to selenium #109
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
packages = find_packages(exclude=['tests', 'tests.*']), | ||
install_requires = [ | ||
# Also update requirements/base.txt when you make changes here. | ||
'selenium==3.141.0' | ||
'selenium>=3.141.0' | ||
], | ||
package_data = { | ||
'helium._impl': ['webdrivers/**/*'] | ||
|
@@ -37,4 +37,4 @@ | |
'Operating System :: MacOS :: MacOS X' | ||
], | ||
test_suite='tests' | ||
) | ||
) | ||
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. Please don't unnecessarily change the white space. See https://gist.github.com/mherrmann/5ce21814789152c17abd91c0b3eaadca. 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. I immagine this is due to my editor settings. |
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.
This permits Selenium 3.141.0. Will your
By.
changes still work with Selenium 3?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.
I suppose that to support both major release, a version check must be added.