__init__.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  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. from .firefox.webdriver import WebDriver as Firefox # noqa
  18. from .firefox.firefox_profile import FirefoxProfile # noqa
  19. from .chrome.webdriver import WebDriver as Chrome # noqa
  20. from .chrome.options import Options as ChromeOptions # noqa
  21. from .ie.webdriver import WebDriver as Ie # noqa
  22. from .edge.webdriver import WebDriver as Edge # noqa
  23. from .opera.webdriver import WebDriver as Opera # noqa
  24. from .safari.webdriver import WebDriver as Safari # noqa
  25. from .blackberry.webdriver import WebDriver as BlackBerry # noqa
  26. from .phantomjs.webdriver import WebDriver as PhantomJS # noqa
  27. from .android.webdriver import WebDriver as Android # noqa
  28. from .remote.webdriver import WebDriver as Remote # noqa
  29. from .common.desired_capabilities import DesiredCapabilities # noqa
  30. from .common.action_chains import ActionChains # noqa
  31. from .common.touch_actions import TouchActions # noqa
  32. from .common.proxy import Proxy # noqa
  33. __version__ = '3.4.3'