Skip to content

Commit 83118c3

Browse files
committed
and ie
1 parent eabebb2 commit 83118c3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/SeleniumLibrary/keywords/webdrivertools/webdrivertools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,8 @@ def create_ie(
277277
return self._remote(remote_url, options=options)
278278
if not executable_path:
279279
executable_path = self._get_executable_path(webdriver.ie.service.Service)
280-
service = IeService(executable_path=executable_path, log_path=service_log_path)
280+
log_method = self._get_log_method(IeService, service_log_path)
281+
service = IeService(executable_path=executable_path, **log_method)
281282
return webdriver.Ie(
282283
options=options,
283284
service=service,

0 commit comments

Comments
 (0)