1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from importlib import import_module
import pytest
from selenium.webdriver.chrome.options import Options as ChromeOptions
from selenium.webdriver.common.options import ArgOptions
from selenium.webdriver.common.options import PageLoadStrategy
from selenium.webdriver.common.proxy import Proxy
from selenium.webdriver.common.proxy import ProxyType
from selenium.webdriver.remote import webdriver
from selenium.webdriver.remote.command import Command
from selenium.webdriver.remote.webdriver import WebDriver
def test_converts_proxy_type_value_to_lowercase_for_w3c(mocker):
mock = mocker.patch("selenium.webdriver.remote.webdriver.WebDriver.execute")
w3c_caps = {"pageLoadStrategy": "normal", "proxy": {"proxyType": "manual", "httpProxy": "foo"}}
options = ArgOptions()
proxy = Proxy({"proxyType": ProxyType.MANUAL, "httpProxy": "foo"})
options.proxy = proxy
WebDriver(options=options)
expected_params = {"capabilities": {"firstMatch": [{}], "alwaysMatch": w3c_caps}}
mock.assert_called_with(Command.NEW_SESSION, expected_params)
def test_works_as_context_manager(mocker):
mocker.patch("selenium.webdriver.remote.webdriver.WebDriver.execute")
quit_ = mocker.patch("selenium.webdriver.remote.webdriver.WebDriver.quit")
with WebDriver(options=ChromeOptions()) as driver:
assert isinstance(driver, WebDriver)
assert quit_.call_count == 1
@pytest.mark.parametrize("browser_name", ["firefox", "chrome", "ie"])
def test_acepts_options_to_remote_driver(mocker, browser_name):
options = import_module(f"selenium.webdriver.{browser_name}.options")
mock = mocker.patch("selenium.webdriver.remote.webdriver.WebDriver.start_session")
opts = options.Options()
opts.add_argument("foo")
WebDriver(options=opts)
expected_caps = opts.to_capabilities()
mock.assert_called_with(expected_caps)
def test_always_match_if_2_of_the_same_options():
from selenium.webdriver.chrome.options import Options as ChromeOptions
from selenium.webdriver.chrome.options import Options as ChromeOptions2
co1 = ChromeOptions()
co1.add_argument("foo")
co2 = ChromeOptions2()
co2.add_argument("bar")
expected = {
"capabilities": {
"alwaysMatch": {
"browserName": "chrome",
"pageLoadStrategy": PageLoadStrategy.normal,
},
"firstMatch": [
{"goog:chromeOptions": {"args": ["foo"], "extensions": []}},
{"goog:chromeOptions": {"args": ["bar"], "extensions": []}},
],
}
}
result = webdriver.create_matches([co1, co2])
assert expected == result
def test_first_match_when_2_different_option_types():
from selenium.webdriver.chrome.options import Options as ChromeOptions
from selenium.webdriver.firefox.options import Options as FirefoxOptions
expected = {
"capabilities": {
"alwaysMatch": {"pageLoadStrategy": PageLoadStrategy.normal},
"firstMatch": [
{"browserName": "chrome", "goog:chromeOptions": {"extensions": [], "args": []}},
{
"browserName": "firefox",
"acceptInsecureCerts": True,
"moz:debuggerAddress": True,
"moz:firefoxOptions": {"args": ["foo"], "prefs": {"remote.active-protocols": 3}},
},
],
}
}
firefox_options = FirefoxOptions()
firefox_options.add_argument("foo")
result = webdriver.create_matches([ChromeOptions(), firefox_options])
assert expected == result
|