Updated script that can be controled by Nodejs web app
This commit is contained in:
16
lib/python3.13/site-packages/selenium/webdriver/edge/__init__.py
Executable file
16
lib/python3.13/site-packages/selenium/webdriver/edge/__init__.py
Executable file
@ -0,0 +1,16 @@
|
||||
# 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.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
48
lib/python3.13/site-packages/selenium/webdriver/edge/options.py
Executable file
48
lib/python3.13/site-packages/selenium/webdriver/edge/options.py
Executable file
@ -0,0 +1,48 @@
|
||||
# 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 selenium.webdriver.chromium.options import ChromiumOptions
|
||||
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
|
||||
|
||||
|
||||
class Options(ChromiumOptions):
|
||||
KEY = "ms:edgeOptions"
|
||||
|
||||
def __init__(self) -> None:
|
||||
super().__init__()
|
||||
self._use_webview = False
|
||||
|
||||
@property
|
||||
def use_webview(self) -> bool:
|
||||
return self._use_webview
|
||||
|
||||
@use_webview.setter
|
||||
def use_webview(self, value: bool) -> None:
|
||||
self._use_webview = bool(value)
|
||||
|
||||
def to_capabilities(self) -> dict:
|
||||
"""Creates a capabilities with all the options that have been set and
|
||||
:Returns: A dictionary with everything."""
|
||||
caps = super().to_capabilities()
|
||||
if self._use_webview:
|
||||
caps["browserName"] = "webview2"
|
||||
|
||||
return caps
|
||||
|
||||
@property
|
||||
def default_capabilities(self) -> dict:
|
||||
return DesiredCapabilities.EDGE.copy()
|
42
lib/python3.13/site-packages/selenium/webdriver/edge/remote_connection.py
Executable file
42
lib/python3.13/site-packages/selenium/webdriver/edge/remote_connection.py
Executable file
@ -0,0 +1,42 @@
|
||||
# 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 typing import Optional
|
||||
|
||||
from selenium.webdriver import DesiredCapabilities
|
||||
from selenium.webdriver.chromium.remote_connection import ChromiumRemoteConnection
|
||||
from selenium.webdriver.remote.client_config import ClientConfig
|
||||
|
||||
|
||||
class EdgeRemoteConnection(ChromiumRemoteConnection):
|
||||
browser_name = DesiredCapabilities.EDGE["browserName"]
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
remote_server_addr: str,
|
||||
keep_alive: bool = True,
|
||||
ignore_proxy: Optional[bool] = False,
|
||||
client_config: Optional[ClientConfig] = None,
|
||||
) -> None:
|
||||
super().__init__(
|
||||
remote_server_addr=remote_server_addr,
|
||||
vendor_prefix="goog",
|
||||
browser_name=EdgeRemoteConnection.browser_name,
|
||||
keep_alive=keep_alive,
|
||||
ignore_proxy=ignore_proxy,
|
||||
client_config=client_config,
|
||||
)
|
55
lib/python3.13/site-packages/selenium/webdriver/edge/service.py
Executable file
55
lib/python3.13/site-packages/selenium/webdriver/edge/service.py
Executable file
@ -0,0 +1,55 @@
|
||||
# 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.
|
||||
import typing
|
||||
|
||||
from selenium.types import SubprocessStdAlias
|
||||
from selenium.webdriver.chromium import service
|
||||
|
||||
|
||||
class Service(service.ChromiumService):
|
||||
"""A Service class that is responsible for the starting and stopping of
|
||||
`msedgedriver`.
|
||||
|
||||
:param executable_path: install path of the msedgedriver executable, defaults to `msedgedriver`.
|
||||
:param port: Port for the service to run on, defaults to 0 where the operating system will decide.
|
||||
:param log_output: (Optional) int representation of STDOUT/DEVNULL, any IO instance or String path to file.
|
||||
:param service_args: (Optional) List of args to be passed to the subprocess when launching the executable.
|
||||
:param env: (Optional) Mapping of environment variables for the new process, defaults to `os.environ`.
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
executable_path: str = None,
|
||||
port: int = 0,
|
||||
log_output: SubprocessStdAlias = None,
|
||||
service_args: typing.Optional[typing.List[str]] = None,
|
||||
env: typing.Optional[typing.Mapping[str, str]] = None,
|
||||
driver_path_env_key: str = None,
|
||||
**kwargs,
|
||||
) -> None:
|
||||
self.service_args = service_args or []
|
||||
driver_path_env_key = driver_path_env_key or "SE_EDGEDRIVER"
|
||||
|
||||
super().__init__(
|
||||
executable_path=executable_path,
|
||||
port=port,
|
||||
service_args=service_args,
|
||||
log_output=log_output,
|
||||
env=env,
|
||||
driver_path_env_key=driver_path_env_key,
|
||||
**kwargs,
|
||||
)
|
51
lib/python3.13/site-packages/selenium/webdriver/edge/webdriver.py
Executable file
51
lib/python3.13/site-packages/selenium/webdriver/edge/webdriver.py
Executable file
@ -0,0 +1,51 @@
|
||||
# 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 selenium.webdriver.chromium.webdriver import ChromiumDriver
|
||||
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
|
||||
|
||||
from .options import Options
|
||||
from .service import Service
|
||||
|
||||
|
||||
class WebDriver(ChromiumDriver):
|
||||
"""Controls the MSEdgeDriver and allows you to drive the browser."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
options: Options = None,
|
||||
service: Service = None,
|
||||
keep_alive: bool = True,
|
||||
) -> None:
|
||||
"""Creates a new instance of the edge driver. Starts the service and
|
||||
then creates new instance of edge driver.
|
||||
|
||||
:Args:
|
||||
- options - this takes an instance of EdgeOptions
|
||||
- service - Service object for handling the browser driver if you need to pass extra details
|
||||
- keep_alive - Whether to configure EdgeRemoteConnection to use HTTP keep-alive.
|
||||
"""
|
||||
service = service if service else Service()
|
||||
options = options if options else Options()
|
||||
|
||||
super().__init__(
|
||||
browser_name=DesiredCapabilities.EDGE["browserName"],
|
||||
vendor_prefix="ms",
|
||||
options=options,
|
||||
service=service,
|
||||
keep_alive=keep_alive,
|
||||
)
|
Reference in New Issue
Block a user