We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2383ea commit ad19a15Copy full SHA for ad19a15
setup.py
@@ -14,7 +14,10 @@
14
install_requires = [
15
# Also update requirements/base.txt when you make changes here.
16
'selenium>=4.9.0,<4.10',
17
- 'webdriver_manager'
+ # Freeze webdriver-manager for security; It downloads and runs binaries
18
+ # from the internet. If it becomes malicious in the future, very bad
19
+ # things can happen.
20
+ 'webdriver-manager==4.0.1'
21
],
22
package_data = {
23
'helium._impl': ['webdrivers/**/*']
0 commit comments