Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/py/test/unit/selenium/webdriver/edge/edge_options_tests.py
1990 views
1
# Licensed to the Software Freedom Conservancy (SFC) under one
2
# or more contributor license agreements. See the NOTICE file
3
# distributed with this work for additional information
4
# regarding copyright ownership. The SFC licenses this file
5
# to you under the Apache License, Version 2.0 (the
6
# "License"); you may not use this file except in compliance
7
# with the License. You may obtain a copy of the License at
8
#
9
# http://www.apache.org/licenses/LICENSE-2.0
10
#
11
# Unless required by applicable law or agreed to in writing,
12
# software distributed under the License is distributed on an
13
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
# KIND, either express or implied. See the License for the
15
# specific language governing permissions and limitations
16
# under the License.
17
18
import pytest
19
20
from selenium.webdriver.common.options import PageLoadStrategy
21
from selenium.webdriver.edge.options import Options
22
23
24
@pytest.fixture
25
def options():
26
return Options()
27
28
29
def test_raises_exception_with_invalid_page_load_strategy(options):
30
with pytest.raises(ValueError):
31
options.page_load_strategy = "never"
32
33
34
def test_set_page_load_strategy(options):
35
options.page_load_strategy = PageLoadStrategy.normal
36
caps = options.to_capabilities()
37
assert caps["pageLoadStrategy"] == PageLoadStrategy.normal
38
39
40
def test_get_page_load_strategy(options):
41
options._caps["pageLoadStrategy"] = PageLoadStrategy.normal
42
assert options.page_load_strategy == PageLoadStrategy.normal
43
44
45
def test_creates_capabilities(options):
46
options.page_load_strategy = PageLoadStrategy.eager
47
caps = options.to_capabilities()
48
assert caps["pageLoadStrategy"] == PageLoadStrategy.eager
49
50
51
def test_starts_with_default_capabilities(options):
52
from selenium.webdriver import DesiredCapabilities
53
54
caps = DesiredCapabilities.EDGE.copy()
55
caps.update({"pageLoadStrategy": PageLoadStrategy.normal})
56
assert options._caps == caps
57
58
59
def test_is_a_baseoptions(options):
60
from selenium.webdriver.common.options import BaseOptions
61
62
assert isinstance(options, BaseOptions)
63
64
65
def test_use_webview():
66
options = Options()
67
options.use_webview = True
68
caps = options.to_capabilities()
69
assert caps["browserName"] == "webview2"
70
71