Skip to content

Commit

Permalink
[py] add more shortcuts to webdriver ini file (#12194)
Browse files Browse the repository at this point in the history
* [py] add more shortcuts to webdriver ini file

* [py] Making linter happy

---------

Co-authored-by: Diego Molina <diemol@gmail.com>
Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
  • Loading branch information
3 people committed Jun 12, 2023
1 parent cdfba2b commit 4d70bd8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,26 @@
# under the License.

from .chrome.options import Options as ChromeOptions # noqa
from .chrome.service import Service as ChromeService # noqa
from .chrome.webdriver import WebDriver as Chrome # noqa
from .common.action_chains import ActionChains # noqa
from .common.desired_capabilities import DesiredCapabilities # noqa
from .common.keys import Keys # noqa
from .common.proxy import Proxy # noqa
from .edge.options import Options as EdgeOptions # noqa
from .edge.service import Service as EdgeService # noqa
from .edge.webdriver import WebDriver as ChromiumEdge # noqa
from .edge.webdriver import WebDriver as Edge # noqa
from .firefox.firefox_profile import FirefoxProfile # noqa
from .firefox.options import Options as FirefoxOptions # noqa
from .firefox.service import Service as FirefoxService # noqa
from .firefox.webdriver import WebDriver as Firefox # noqa
from .ie.options import Options as IeOptions # noqa
from .ie.service import Service as IeService # noqa
from .ie.webdriver import WebDriver as Ie # noqa
from .remote.webdriver import WebDriver as Remote # noqa
from .safari.options import Options as SafariOptions
from .safari.service import Service as SafariService # noqa
from .safari.webdriver import WebDriver as Safari # noqa
from .webkitgtk.options import Options as WebKitGTKOptions # noqa
from .webkitgtk.webdriver import WebDriver as WebKitGTK # noqa
Expand All @@ -43,14 +49,20 @@
"Firefox",
"FirefoxProfile",
"FirefoxOptions",
"FirefoxService",
"Chrome",
"ChromeOptions",
"ChromeService",
"Ie",
"IeOptions",
"IeService",
"Edge",
"ChromiumEdge",
"EdgeOptions",
"EdgeService",
"Safari",
"SafariOptions",
"SafariService",
"WebKitGTK",
"WebKitGTKOptions",
"WPEWebKit",
Expand Down

0 comments on commit 4d70bd8

Please sign in to comment.