14
0
Files
python-selenium/python-selenium.spec

80 lines
2.6 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-selenium
#
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?sle15_python_module_pythons}
Name: python-selenium
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
Version: 4.25.0
Release: 0
Summary: Python bindings for Selenium
License: Apache-2.0
URL: https://github.com/SeleniumHQ/selenium
Source: https://files.pythonhosted.org/packages/source/s/selenium/selenium-%{version}.tar.gz
- Update to 4.10.0: * Fix bug preventing proxy from working in Options classes (#12029) * Add support for changing pointers in Actions class (#11521) * Support newer versions of urllib3 (#11993) * Add fine grained control for arguments provided to service subprocesses by passing a `popen_kw` mapping for all services. * `Options` classes now allow `timeout` to be set partially and no longer raise an exception when all values are not provided. (#11623) * Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown. * Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963) * Use monotonic clock for waits, fixes #10544 (#10550) * Use `get_timeout()` for urllib pool manager timeouts in remote connection (#10563) * update ShadowRoot find element signatures to match those in WebElement (#10138) * Check the values in NO_PROXY and set the poolmanager accordingly (#9925, #9967) * Allows None to be set for the sameSite attribute (#9771) * Specify that the "find_element_by_* ..." warning is a deprecation warning (#9700) * Allow 0 coordinates for the window position. Fixes #9574 * Add the ability to pass in multiple options and have that capabilities returned as (first|always)Match * Add the ability to pass in different locators to do Relative Locator searches * Add the ability to enable mobile on options classes * Allow overriding the default 250 msecs duration of pointer movement (#9336) * Set Chromium Edge to be the default for Edge browsers * Add ARIA APIs for getting the role and label of an Element OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=85
2023-06-09 06:29:39 +00:00
# https://github.com/SeleniumHQ/selenium/issues/6246
Source1: selenium-pytest.tar.bz2
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
Source2: vendor.tar.xz
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module certifi >= 2021.10.8}
- Update to 4.10.0: * Fix bug preventing proxy from working in Options classes (#12029) * Add support for changing pointers in Actions class (#11521) * Support newer versions of urllib3 (#11993) * Add fine grained control for arguments provided to service subprocesses by passing a `popen_kw` mapping for all services. * `Options` classes now allow `timeout` to be set partially and no longer raise an exception when all values are not provided. (#11623) * Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown. * Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963) * Use monotonic clock for waits, fixes #10544 (#10550) * Use `get_timeout()` for urllib pool manager timeouts in remote connection (#10563) * update ShadowRoot find element signatures to match those in WebElement (#10138) * Check the values in NO_PROXY and set the poolmanager accordingly (#9925, #9967) * Allows None to be set for the sameSite attribute (#9771) * Specify that the "find_element_by_* ..." warning is a deprecation warning (#9700) * Allow 0 coordinates for the window position. Fixes #9574 * Add the ability to pass in multiple options and have that capabilities returned as (first|always)Match * Add the ability to pass in different locators to do Relative Locator searches * Add the ability to enable mobile on options classes * Allow overriding the default 250 msecs duration of pointer movement (#9336) * Set Chromium Edge to be the default for Edge browsers * Add ARIA APIs for getting the role and label of an Element OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=85
2023-06-09 06:29:39 +00:00
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module rdflib}
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
BuildRequires: %{python_module setuptools-rust}
BuildRequires: %{python_module setuptools}
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
BuildRequires: %{python_module typing-extensions >= 4.9}
BuildRequires: %{python_module urllib3}
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
BuildRequires: %{python_module websocket-client >= 1.8}
- Update to 4.10.0: * Fix bug preventing proxy from working in Options classes (#12029) * Add support for changing pointers in Actions class (#11521) * Support newer versions of urllib3 (#11993) * Add fine grained control for arguments provided to service subprocesses by passing a `popen_kw` mapping for all services. * `Options` classes now allow `timeout` to be set partially and no longer raise an exception when all values are not provided. (#11623) * Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown. * Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963) * Use monotonic clock for waits, fixes #10544 (#10550) * Use `get_timeout()` for urllib pool manager timeouts in remote connection (#10563) * update ShadowRoot find element signatures to match those in WebElement (#10138) * Check the values in NO_PROXY and set the poolmanager accordingly (#9925, #9967) * Allows None to be set for the sameSite attribute (#9771) * Specify that the "find_element_by_* ..." warning is a deprecation warning (#9700) * Allow 0 coordinates for the window position. Fixes #9574 * Add the ability to pass in multiple options and have that capabilities returned as (first|always)Match * Add the ability to pass in different locators to do Relative Locator searches * Add the ability to enable mobile on options classes * Allow overriding the default 250 msecs duration of pointer movement (#9336) * Set Chromium Edge to be the default for Edge browsers * Add ARIA APIs for getting the role and label of an Element OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=85
2023-06-09 06:29:39 +00:00
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
- Update to 4.10.0: * Fix bug preventing proxy from working in Options classes (#12029) * Add support for changing pointers in Actions class (#11521) * Support newer versions of urllib3 (#11993) * Add fine grained control for arguments provided to service subprocesses by passing a `popen_kw` mapping for all services. * `Options` classes now allow `timeout` to be set partially and no longer raise an exception when all values are not provided. (#11623) * Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown. * Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963) * Use monotonic clock for waits, fixes #10544 (#10550) * Use `get_timeout()` for urllib pool manager timeouts in remote connection (#10563) * update ShadowRoot find element signatures to match those in WebElement (#10138) * Check the values in NO_PROXY and set the poolmanager accordingly (#9925, #9967) * Allows None to be set for the sameSite attribute (#9771) * Specify that the "find_element_by_* ..." warning is a deprecation warning (#9700) * Allow 0 coordinates for the window position. Fixes #9574 * Add the ability to pass in multiple options and have that capabilities returned as (first|always)Match * Add the ability to pass in different locators to do Relative Locator searches * Add the ability to enable mobile on options classes * Allow overriding the default 250 msecs duration of pointer movement (#9336) * Set Chromium Edge to be the default for Edge browsers * Add ARIA APIs for getting the role and label of an Element OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=85
2023-06-09 06:29:39 +00:00
Requires: python-certifi >= 2021.10.8
Requires: python-trio >= 0.17
Requires: python-trio-websocket >= 0.9
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
Requires: python-typing-extensions >= 4.9
Requires: python-urllib3
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
Requires: python-websocket-client >= 1.8
ExclusiveArch: %{ix86} x86_64 %arm aarch64 riscv64
%python_subpackages
%description
Selenium Python Client Driver is a Python language binding for Selenium Remote
Control (version 1.0 and 2.0).
Currently, the remote protocol, Firefox and Chrome for Selenium 2.0 are
supported, as well as the Selenium 1.0 bindings.
%prep
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
%setup -q -n selenium-%{version} -a1 -a2
%build
- Update to 4.10.0: * Fix bug preventing proxy from working in Options classes (#12029) * Add support for changing pointers in Actions class (#11521) * Support newer versions of urllib3 (#11993) * Add fine grained control for arguments provided to service subprocesses by passing a `popen_kw` mapping for all services. * `Options` classes now allow `timeout` to be set partially and no longer raise an exception when all values are not provided. (#11623) * Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown. * Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963) * Use monotonic clock for waits, fixes #10544 (#10550) * Use `get_timeout()` for urllib pool manager timeouts in remote connection (#10563) * update ShadowRoot find element signatures to match those in WebElement (#10138) * Check the values in NO_PROXY and set the poolmanager accordingly (#9925, #9967) * Allows None to be set for the sameSite attribute (#9771) * Specify that the "find_element_by_* ..." warning is a deprecation warning (#9700) * Allow 0 coordinates for the window position. Fixes #9574 * Add the ability to pass in multiple options and have that capabilities returned as (first|always)Match * Add the ability to pass in different locators to do Relative Locator searches * Add the ability to enable mobile on options classes * Allow overriding the default 250 msecs duration of pointer movement (#9336) * Set Chromium Edge to be the default for Edge browsers * Add ARIA APIs for getting the role and label of an Element OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=85
2023-06-09 06:29:39 +00:00
%pyproject_wheel
%install
- Update to 4.10.0: * Fix bug preventing proxy from working in Options classes (#12029) * Add support for changing pointers in Actions class (#11521) * Support newer versions of urllib3 (#11993) * Add fine grained control for arguments provided to service subprocesses by passing a `popen_kw` mapping for all services. * `Options` classes now allow `timeout` to be set partially and no longer raise an exception when all values are not provided. (#11623) * Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown. * Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963) * Use monotonic clock for waits, fixes #10544 (#10550) * Use `get_timeout()` for urllib pool manager timeouts in remote connection (#10563) * update ShadowRoot find element signatures to match those in WebElement (#10138) * Check the values in NO_PROXY and set the poolmanager accordingly (#9925, #9967) * Allows None to be set for the sameSite attribute (#9771) * Specify that the "find_element_by_* ..." warning is a deprecation warning (#9700) * Allow 0 coordinates for the window position. Fixes #9574 * Add the ability to pass in multiple options and have that capabilities returned as (first|always)Match * Add the ability to pass in different locators to do Relative Locator searches * Add the ability to enable mobile on options classes * Allow overriding the default 250 msecs duration of pointer movement (#9336) * Set Chromium Edge to be the default for Edge browsers * Add ARIA APIs for getting the role and label of an Element OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=85
2023-06-09 06:29:39 +00:00
%pyproject_install
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
%pytest_arch test/unit
%files %{python_files}
%doc README.rst CHANGES
%license LICENSE
- Update to 4.25.0: * Add CDP for Chrome 129 and remove 126 * Allow overriding `GLOBAL_DEFAULT_TIMEOUT` * Disable strict time stamps in Firefox profile * Remove precompiled binaries from sdist * Fix RelativeBy#near to take 2 parameters * Fix EOFError when calling the Remote WebDriver download_file method * Add low-level sync API to use DevTools * Add preference to enable CDP in Firefox by default * Allow using enable_bidi property on options class * Implement script module for BiDi * Remove desired capabilities argument for Webkitgtk * Make webkitgtk.webdriver same as wpewebkit.webdriver * Moving ignore_local_proxy_environment_variables to BaseOptions * Making Selenium Manager a thin wrapper * Add more network interfaces to detect lan ip * Explicitly export Select and WebDriverWait from selenium.webdriver.support.ui * [py] Correct typing_extension dependency for wheel generation * Add page load strategy enum * Use correct file name when bumping versions * Filter which bidi logs are recorded based on event type * Sleep depending on the number of attempts to check if the service has started * Use subprocess.DEVNULL instead of open(os.devnull) * Do not change profile preferences of an existing directory by default * Fix inadvertent code change in mutation_event * Fix bug in using SE_MANAGER_PATH * Fix bug where downloaded file was not getting unzipped * Fix WebDriverWait type hints for WebElement OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=89
2024-10-15 04:09:19 +00:00
%{python_sitearch}/selenium
%{python_sitearch}/selenium-%{version}.dist-info
%changelog