We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eabebb2 commit 83118c3Copy full SHA for 83118c3
src/SeleniumLibrary/keywords/webdrivertools/webdrivertools.py
@@ -277,7 +277,8 @@ def create_ie(
277
return self._remote(remote_url, options=options)
278
if not executable_path:
279
executable_path = self._get_executable_path(webdriver.ie.service.Service)
280
- service = IeService(executable_path=executable_path, log_path=service_log_path)
+ log_method = self._get_log_method(IeService, service_log_path)
281
+ service = IeService(executable_path=executable_path, **log_method)
282
return webdriver.Ie(
283
options=options,
284
service=service,
0 commit comments