Skip to content

Commit

Permalink
[py] Fixing a using test for IE options to make it similar to other b…
Browse files Browse the repository at this point in the history
…rowsers
  • Loading branch information
barancev committed Mar 22, 2020
1 parent bb3a800 commit 4e0b2e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion py/test/unit/selenium/webdriver/ie/test_ie_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ def test_to_capabilities_should_not_modify_set_options(opts):

def test_starts_with_default_capabilities(opts):
from selenium.webdriver import DesiredCapabilities
assert opts._caps == DesiredCapabilities.INTERNETEXPLORER
caps = DesiredCapabilities.INTERNETEXPLORER.copy()
caps.update({"pageLoadStrategy": "normal"})
assert opts._caps == caps


def test_is_a_baseoptions(opts):
Expand Down

0 comments on commit 4e0b2e0

Please sign in to comment.