Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/py/test/unit/selenium/webdriver/safari/safari_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.safari.options import Options
22
23
24
@pytest.fixture
25
def options():
26
return Options()
27
28
29
def test_starts_with_default_capabilities(options):
30
from selenium.webdriver import DesiredCapabilities
31
32
caps = DesiredCapabilities.SAFARI.copy()
33
caps.update({"pageLoadStrategy": PageLoadStrategy.normal})
34
assert options._caps == caps
35
36
37
def test_is_a_baseoptions(options):
38
from selenium.webdriver.common.options import BaseOptions
39
40
assert isinstance(options, BaseOptions)
41
42
43
def test_can_set_automatic_inspection(options):
44
options.automatic_inspection = True
45
assert options.automatic_inspection is True
46
assert options._caps.get(Options.AUTOMATIC_INSPECTION) is True
47
48
49
def test_can_set_automatic_profiling(options):
50
options.automatic_profiling = True
51
assert options.automatic_profiling is True
52
assert options._caps.get(Options.AUTOMATIC_PROFILING) is True
53
54
55
def test_setting_technology_preview_changes_browser_name(options):
56
from selenium.webdriver import DesiredCapabilities
57
58
BROWSER_NAME = "browserName"
59
assert options._caps.get(BROWSER_NAME) == DesiredCapabilities.SAFARI[BROWSER_NAME]
60
61
options.use_technology_preview = True
62
assert options._caps.get(BROWSER_NAME) == options.SAFARI_TECH_PREVIEW
63
64
options.use_technology_preview = False
65
assert options._caps.get(BROWSER_NAME) == DesiredCapabilities.SAFARI[BROWSER_NAME]
66
67