14
0
Files
python-selenium/python-selenium.spec
Tomas Cech e4e554bac3 Accepting request 530300 from home:mimi_vx:branches:devel:languages:python
- Update to 3.6.0
  * Fix package name in python webelement module (#4670)
  * Fix python driver examples (#3872)
  * No need to multiply pause by 1000
  * Add pause to action chains
  * only check for proxyType once
  * lowercase proxy type for w3c payload in python #4574
  * guarding against null return value from find_elements in python #4555
  * remove unnecessary pytest marking, address flake8 issues
  * allow IE WebDriver to accept IE Options
  * add IE Options class
  * convert OSS capabilities to W3C equivalent for W3C payload
  * Add Safari to API docs
  * Numerous test fixes
  * Iterate over capabilities in a way to support py2.7 and py3
  * Fix W3C switching to window by name.
  * Support GeckoDriver addon install/uninstall commands  #4215.
  * Move firefox_profile into moz:firefoxOptions.
  * Filter non-W3C capability names out of alwaysMatch.
  * Honor cmd line args passed to Service ctor (#4167)
  * Add expected conditions based on URL to Python Expected Conditions #4160
  * Add network emulation to Chrome Python bindings (#4011)
  * add warning when saving incorrectly named screenshot (#4141)

OBS-URL: https://build.opensuse.org/request/show/530300
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-selenium?expand=0&rev=56
2017-10-05 09:13:57 +00:00

64 lines
2.1 KiB
RPMSpec

#
# spec file for package python-selenium
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-selenium
Version: 3.6.0
Release: 0
Summary: Python bindings for Selenium
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/SeleniumHQ/selenium
Source: https://files.pythonhosted.org/packages/source/s/selenium/selenium-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module rdflib}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-rdflib
ExclusiveArch: %{ix86} x86_64
%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. As work will progresses we'll
add more "native" drivers.
%prep
%setup -q -n selenium-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
# Avoid 64bit runtime dependencies on 32bit architectures:
%ifarch %{ix86}
%python_expand rm %{buildroot}%{$python_sitelib}/selenium/webdriver/firefox/amd64/x_ignore_nofocus.so
%endif
%files %{python_files}
%doc README.rst CHANGES
%{python_sitelib}/*
%changelog