Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/py/selenium/webdriver/__init__.py
1864 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
from .chrome.options import Options as ChromeOptions # noqa
19
from .chrome.service import Service as ChromeService # noqa
20
from .chrome.webdriver import WebDriver as Chrome # noqa
21
from .common.action_chains import ActionChains # noqa
22
from .common.desired_capabilities import DesiredCapabilities # noqa
23
from .common.keys import Keys # noqa
24
from .common.proxy import Proxy # noqa
25
from .edge.options import Options as EdgeOptions # noqa
26
from .edge.service import Service as EdgeService # noqa
27
from .edge.webdriver import WebDriver as ChromiumEdge # noqa
28
from .edge.webdriver import WebDriver as Edge # noqa
29
from .firefox.firefox_profile import FirefoxProfile # noqa
30
from .firefox.options import Options as FirefoxOptions # noqa
31
from .firefox.service import Service as FirefoxService # noqa
32
from .firefox.webdriver import WebDriver as Firefox # noqa
33
from .ie.options import Options as IeOptions # noqa
34
from .ie.service import Service as IeService # noqa
35
from .ie.webdriver import WebDriver as Ie # noqa
36
from .remote.webdriver import WebDriver as Remote # noqa
37
from .safari.options import Options as SafariOptions
38
from .safari.service import Service as SafariService # noqa
39
from .safari.webdriver import WebDriver as Safari # noqa
40
from .webkitgtk.options import Options as WebKitGTKOptions # noqa
41
from .webkitgtk.service import Service as WebKitGTKService # noqa
42
from .webkitgtk.webdriver import WebDriver as WebKitGTK # noqa
43
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
44
from .wpewebkit.service import Service as WPEWebKitService # noqa
45
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
46
47
__version__ = "4.36.0.202508121825"
48
49
# We need an explicit __all__ because the above won't otherwise be exported.
50
__all__ = [
51
"ActionChains",
52
"Chrome",
53
"ChromeOptions",
54
"ChromeService",
55
"ChromiumEdge",
56
"DesiredCapabilities",
57
"Edge",
58
"EdgeOptions",
59
"EdgeService",
60
"Firefox",
61
"FirefoxOptions",
62
"FirefoxProfile",
63
"FirefoxService",
64
"Ie",
65
"IeOptions",
66
"IeService",
67
"Keys",
68
"Proxy",
69
"Remote",
70
"Safari",
71
"SafariOptions",
72
"SafariService",
73
"WPEWebKit",
74
"WPEWebKitOptions",
75
"WPEWebKitService",
76
"WebKitGTK",
77
"WebKitGTKOptions",
78
"WebKitGTKService",
79
]
80
81