We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
driver = webdriver.Ie(capabilities=cap, executable_path=ie11_driver_path,options=ie11_options) File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\selenium\webdriver\ie\webdriver.py", line 93, in init service = Service() TypeError: init() missing 1 required positional argument: 'executable_path'
ie11_driver_path = Ie11Factory.get_driver_path() ie11_options = Ie11Factory.build_ie11_options() cap = DesiredCapabilities().INTERNETEXPLORER cap['version'] = "11" cap['nativeEvents'] = False cap['requireWindowFocus'] = True ie11_options.executable_path = ie11_driver_path driver = webdriver.Ie(capabilities=cap, executable_path=ie11_driver_path,options=ie11_options)
Windows 10 x64 Browser: Internet explorer 11 Language Bindings version: selenium 4.0.0a3
The text was updated successfully, but these errors were encountered:
@AutomatedTester this is a real bug. Lines 92 and 93 need to be deleted.
I thought we made the signatures consistent with @lmtierney recent work. Maybe that should be a goal before we make 4.x official.
Sorry, something went wrong.
35ed2da
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
🐛 Bug Report
driver = webdriver.Ie(capabilities=cap, executable_path=ie11_driver_path,options=ie11_options)
File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\selenium\webdriver\ie\webdriver.py", line 93, in init
service = Service()
TypeError: init() missing 1 required positional argument: 'executable_path'
Environment
Windows 10 x64
Browser: Internet explorer 11
Language Bindings version: selenium 4.0.0a3
The text was updated successfully, but these errors were encountered: