diff options
Diffstat (limited to 'python-selenium-odoo-pages.spec')
-rw-r--r-- | python-selenium-odoo-pages.spec | 190 |
1 files changed, 190 insertions, 0 deletions
diff --git a/python-selenium-odoo-pages.spec b/python-selenium-odoo-pages.spec new file mode 100644 index 0000000..ca8f79c --- /dev/null +++ b/python-selenium-odoo-pages.spec @@ -0,0 +1,190 @@ +%global _empty_manifest_terminate_build 0 +Name: python-selenium-odoo-pages +Version: 0.4.0 +Release: 1 +Summary: A set of pages and elements used to interact with odoo pages and widget using the page selenium objects pattern +License: Apache Software License +URL: https://gitlab.com/micro-entreprise/selenium-odoo-pages +Source0: https://mirrors.aliyun.com/pypi/web/packages/b2/83/0f774bdc9ec1d86e609174dcaed45b8dee305bb440434182f68e44428858/selenium-odoo-pages-0.4.0.tar.gz +BuildArch: noarch + +Requires: python3-selenium +Requires: python3-selenium-configurator +Requires: python3-dotenv +Requires: python3-pytest-bdd + +%description +[](https://gitlab.com/micro-entreprise/selenium-odoo-pages/) +[](https://gitlab.com/micro-entreprise/selenium-odoo-pages/) +[](https://pypi.python.org/pypi/selenium-odoo-pages/) +[](https://pypi.org/project/selenium-odoo-pages) + +# Selenium odoo pages + +A set of pages and elements used to interact with odoo +pages and widgets using the [page selenium objects]( +https://selenium-python.readthedocs.io/page-objects.html +) pattern. + +## Usage + +This library provides set of common tools using Selenium +to interact with odoo web pages. It was written to write +Behavior-Driven Development tests but can be used without +Gherkin language as described bellow. + +To learn about Gherkin language you may start with +[pytest-bdd documentation](https://pypi.org/project/pytest-bdd/) +the recommended tools to launch your tests. + +The [example directory](./example) contains examples of +usages that are also used to test this library. + +### Rules of thumb to make scenario easier to maintains + +* scenario should be as short as possible +* a scenario should focus to one thing +* preparing data should be as fast as possible using available + shortcut (xmlrpc, database access...) + +## Contributing + +The idea of this librairy is t + + + + +%package -n python3-selenium-odoo-pages +Summary: A set of pages and elements used to interact with odoo pages and widget using the page selenium objects pattern +Provides: python-selenium-odoo-pages +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-selenium-odoo-pages +[](https://gitlab.com/micro-entreprise/selenium-odoo-pages/) +[](https://gitlab.com/micro-entreprise/selenium-odoo-pages/) +[](https://pypi.python.org/pypi/selenium-odoo-pages/) +[](https://pypi.org/project/selenium-odoo-pages) + +# Selenium odoo pages + +A set of pages and elements used to interact with odoo +pages and widgets using the [page selenium objects]( +https://selenium-python.readthedocs.io/page-objects.html +) pattern. + +## Usage + +This library provides set of common tools using Selenium +to interact with odoo web pages. It was written to write +Behavior-Driven Development tests but can be used without +Gherkin language as described bellow. + +To learn about Gherkin language you may start with +[pytest-bdd documentation](https://pypi.org/project/pytest-bdd/) +the recommended tools to launch your tests. + +The [example directory](./example) contains examples of +usages that are also used to test this library. + +### Rules of thumb to make scenario easier to maintains + +* scenario should be as short as possible +* a scenario should focus to one thing +* preparing data should be as fast as possible using available + shortcut (xmlrpc, database access...) + +## Contributing + +The idea of this librairy is t + + + + +%package help +Summary: Development documents and examples for selenium-odoo-pages +Provides: python3-selenium-odoo-pages-doc +%description help +[](https://gitlab.com/micro-entreprise/selenium-odoo-pages/) +[](https://gitlab.com/micro-entreprise/selenium-odoo-pages/) +[](https://pypi.python.org/pypi/selenium-odoo-pages/) +[](https://pypi.org/project/selenium-odoo-pages) + +# Selenium odoo pages + +A set of pages and elements used to interact with odoo +pages and widgets using the [page selenium objects]( +https://selenium-python.readthedocs.io/page-objects.html +) pattern. + +## Usage + +This library provides set of common tools using Selenium +to interact with odoo web pages. It was written to write +Behavior-Driven Development tests but can be used without +Gherkin language as described bellow. + +To learn about Gherkin language you may start with +[pytest-bdd documentation](https://pypi.org/project/pytest-bdd/) +the recommended tools to launch your tests. + +The [example directory](./example) contains examples of +usages that are also used to test this library. + +### Rules of thumb to make scenario easier to maintains + +* scenario should be as short as possible +* a scenario should focus to one thing +* preparing data should be as fast as possible using available + shortcut (xmlrpc, database access...) + +## Contributing + +The idea of this librairy is t + + + + +%prep +%autosetup -n selenium-odoo-pages-0.4.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-selenium-odoo-pages -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.0-1 +- Package Spec generated |