| 
15 | 15 | # specific language governing permissions and limitations  | 
16 | 16 | # under the License.  | 
17 | 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  | 
 | 18 | +from selenium.webdriver.chrome.options import Options as ChromeOptions  # noqa  | 
 | 19 | +from selenium.webdriver.chrome.service import Service as ChromeService  # noqa  | 
 | 20 | +from selenium.webdriver.chrome.webdriver import WebDriver as Chrome  # noqa  | 
 | 21 | +from selenium.webdriver.common.action_chains import ActionChains  # noqa  | 
 | 22 | +from selenium.webdriver.common.desired_capabilities import DesiredCapabilities  # noqa  | 
 | 23 | +from selenium.webdriver.common.keys import Keys  # noqa  | 
 | 24 | +from selenium.webdriver.common.proxy import Proxy  # noqa  | 
 | 25 | +from selenium.webdriver.edge.options import Options as EdgeOptions  # noqa  | 
 | 26 | +from selenium.webdriver.edge.service import Service as EdgeService  # noqa  | 
 | 27 | +from selenium.webdriver.edge.webdriver import WebDriver as ChromiumEdge  # noqa  | 
 | 28 | +from selenium.webdriver.edge.webdriver import WebDriver as Edge  # noqa  | 
 | 29 | +from selenium.webdriver.firefox.firefox_profile import FirefoxProfile  # noqa  | 
 | 30 | +from selenium.webdriver.firefox.options import Options as FirefoxOptions  # noqa  | 
 | 31 | +from selenium.webdriver.firefox.service import Service as FirefoxService  # noqa  | 
 | 32 | +from selenium.webdriver.firefox.webdriver import WebDriver as Firefox  # noqa  | 
 | 33 | +from selenium.webdriver.ie.options import Options as IeOptions  # noqa  | 
 | 34 | +from selenium.webdriver.ie.service import Service as IeService  # noqa  | 
 | 35 | +from selenium.webdriver.ie.webdriver import WebDriver as Ie  # noqa  | 
 | 36 | +from selenium.webdriver.remote.webdriver import WebDriver as Remote  # noqa  | 
 | 37 | +from selenium.webdriver.safari.options import Options as SafariOptions  | 
 | 38 | +from selenium.webdriver.safari.service import Service as SafariService  # noqa  | 
 | 39 | +from selenium.webdriver.safari.webdriver import WebDriver as Safari  # noqa  | 
 | 40 | +from selenium.webdriver.webkitgtk.options import Options as WebKitGTKOptions  # noqa  | 
 | 41 | +from selenium.webdriver.webkitgtk.service import Service as WebKitGTKService  # noqa  | 
 | 42 | +from selenium.webdriver.webkitgtk.webdriver import WebDriver as WebKitGTK  # noqa  | 
 | 43 | +from selenium.webdriver.wpewebkit.options import Options as WPEWebKitOptions  # noqa  | 
 | 44 | +from selenium.webdriver.wpewebkit.service import Service as WPEWebKitService  # noqa  | 
 | 45 | +from selenium.webdriver.wpewebkit.webdriver import WebDriver as WPEWebKit  # noqa  | 
46 | 46 | 
 
  | 
47 | 47 | __version__ = "4.36.0.202508121825"  | 
48 | 48 | 
 
  | 
 | 
0 commit comments