Skip to content

Commit eb4eb5a

Browse files
committed
Updated unit tests related to Edge
- Edge webdriver now has options - Edge executable path has changed to msedgedriver
1 parent 99c49e3 commit eb4eb5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

utest/test/keywords/test_selenium_options_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def test_has_options(creator):
348348
assert creator._has_options(webdriver.Chrome)
349349
assert creator._has_options(webdriver.Firefox)
350350
assert creator._has_options(webdriver.Ie)
351-
assert creator._has_options(webdriver.Edge) is False
351+
assert creator._has_options(webdriver.Edge)
352352
assert creator._has_options(webdriver.Opera)
353353
assert creator._has_options(webdriver.Safari) is False
354354

utest/test/keywords/test_webdrivercreator_executable_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_get_executable_path(creator):
5454
assert executable_path is None
5555

5656
executable_path = creator._get_executable_path(webdriver.Edge)
57-
assert executable_path == "MicrosoftWebDriver.exe"
57+
assert executable_path == "msedgedriver"
5858

5959

6060
def test_create_chrome_executable_path_and_remote(creator):

0 commit comments

Comments
 (0)