- update to 7.0:
* Add support for Python 3.12 and 3.13 as of 3.13b1.
* Drop support for Python 3.7.
- use PEP517 build
- update to 5.6.1
* Add error checking to the setters for ListControl.displayValue and CheckboxListControl.displayValue:
in line with the old mechanize-based implementation, these will now raise ItemNotFoundError
if any of the given values are not found, or ItemCountError on trying to set more than one value
* Fix a bug where browser.goBack() did not invalidate caches, so subsequent queries could use data
* Fix a bug where you couldn’t set a cookie expiration date when
* Fix an incompatibility with BeautifulSoup4 >= 4.7 that could
* Fix narrative doctests that started failing on January 1st,
* Fix mechRepr of CheckboxListControl to always return a
- Added patch zope.testbrowser-remove-bad-test.patch to disable
* It seems to me that Google has changed the robot policy again
OBS-URL: https://build.opensuse.org/request/show/1179663
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-zope.testbrowser?expand=0&rev=16
* Add support for Python 3.12 and 3.13 as of 3.13b1.
* Drop support for Python 3.7.
- use PEP517 build
- update to 5.6.1
* Add error checking to the setters for ListControl.displayValue and CheckboxListControl.displayValue:
in line with the old mechanize-based implementation, these will now raise ItemNotFoundError
if any of the given values are not found, or ItemCountError on trying to set more than one value
* Fix a bug where browser.goBack() did not invalidate caches, so subsequent queries could use data
* Fix a bug where you couldn’t set a cookie expiration date when
* Fix an incompatibility with BeautifulSoup4 >= 4.7 that could
* Fix narrative doctests that started failing on January 1st,
* Fix mechRepr of CheckboxListControl to always return a
- Added patch zope.testbrowser-remove-bad-test.patch to disable
* It seems to me that Google has changed the robot policy again
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.testbrowser?expand=0&rev=27
- update to 5.5.1
* Stop sending a Referer header when browser.open or browser.post is called directly.
* Add error checking to the setters for ListControl.displayValue and CheckboxListControl.displayValue:
in line with the old mechanize-based implementation, these will now raise ItemNotFoundError
if any of the given values are not found, or ItemCountError on trying to set more than one value
on a single-valued control.
* Fix AttributeError in add_file when trying to add to a control which is not a file upload.
* Fix a bug where browser.goBack() did not invalidate caches, so subsequent queries could use data
from the wrong response.
* Support telling the browser not to follow redirects by setting Browser.follow_redirects to False.
OBS-URL: https://build.opensuse.org/request/show/766041
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.testbrowser?expand=0&rev=19
- update to version 5.3.2
* Fix a bug where you couldn’t set a cookie expiration date when
your locale was not English.
* Fix an incompatibility with BeautifulSoup4 >= 4.7 that could
result in a SyntaxError from browser.getControl().
* note: BeautifulSoup is not in requirements in setup.py and
we are successfully building the package without it
* Fix narrative doctests that started failing on January 1st,
2019 due to a hardcoded “future” date.
5.3.1
* Fix a DeprecationWarning on Python 3.
5.3.0
* Add support for Python 3.7.
* Drop support for Python 3.3 and 3.4.
* Drop support for pystone as Python 3.7 dropped pystone.
* Fix mechRepr of CheckboxListControl to always return a
native str.
* Add mechRepr to input fields having the type email.
- Added patch zope.testbrowser-remove-bad-test.patch to disable
failing test.
* It seems to me that Google has changed the robot policy again
and therefore it is not a bug in the software itself (similar
to upstream issue #12).
OBS-URL: https://build.opensuse.org/request/show/692343
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.testbrowser?expand=0&rev=13
- Update to 5.2.4
* Fix form submit with GET method if the form action contains a query string
(https://github.com/zopefoundation/zope.testbrowser/pull/42).
* Restore ignoring hidden elements when searching by label
(https://github.com/zopefoundation/zope.testbrowser/pull/41).
- Update to 5.2.3
* Fix ``mechRepr`` on controls to always return a native str
(https://github.com/zopefoundation/zope.testbrowser/issues/38).
- Update to 5.2.2
* Restore raising of AttributeError when trying to set value of a
read only control.
* Fix selecting radio and select control options by index
(https://github.com/zopefoundation/zope.testbrowser/issues/31).
- Update to 5.2.1
* Exclude version 2.0.27 of `WebTest` from allowed versions as it breaks some
tests.
* Adapt tests to version 2.0.28 of `WebTest` but keeping compatibility to older
versions.
- Update to 5.2
* Fixed ``toStr`` to handle lists, for example a list of class names.
[maurits]
* Fixed browser to only follow redirects for HTTP statuses
301, 302, 303, and 307; not other 30x statuses such as 304.
* Fix passing a real file to ``add_file``.
* Add ``controls`` property to Form class to list all form controls.
* Restore the ability to use parts of the actually displayed select box titles.
* Allow to set a string value instead of a list on ``Browser.displayValue``.
* Fix setting empty values on a select control.
* Support Python 3.6, PyPy2.7 an PyPy3.3.
- Update to 5.1
* Alias ``.browser.urllib_request.HTTPError`` to ``.browser.HTTPError`` to have
a better API.
- Update to 5.0.0
* Converted most doctests to Sphinx documentation, and published to
https://zopetestbrowser.readthedocs.io/ .
* Internal implementation now uses WebTest instead of ``mechanize``.
The ``mechanize`` dependency is completely dropped.
**This is a backwards-incompatible change.**
* Remove APIs:
> ``zope.testbrowser.testing.Browser`` (this is a big one).
* Remove modules:
> ``zope.testbrowser.connection``
* Remove internal classes you were not supposed to use anyway:
> ``zope.testbrowser.testing.PublisherResponse``
> ``zope.testbrowser.testing.PublisherConnection``
> ``zope.testbrowser.testing.PublisherHTTPHandler``
> ``zope.testbrowser.testing.PublisherMechanizeBrowser``
> ``zope.testbrowser.wsgi.WSGIConnection``
> ``zope.testbrowser.wsgi.WSGIHTTPHandler``
> ``zope.testbrowser.wsgi.WSGIMechanizeBrowser``
* Remove internal attributes you were not supposed to use anyway (this
list is not necessarily complete):
> ``Browser._mech_browser``
* Remove setuptools extras:
> ``zope.testbrowser[zope-functional-testing]``
* Changed behavior:
> The testbrowser no longer follows HTML redirects aka
``<meta http-equiv="refresh" ... />``. This was a `mechanize` feature which
does not seem to be provided by `WebTest`.
* Add support for Python 3.3, 3.4 and 3.5.
* Drop support for Python 2.5 and 2.6.
* Drop the ``WebTest <= 1.3.4`` pin. We require ``WebTest >= 2.0.8`` now.
* Remove dependency on deprecated ``zope.app.testing``.
* Bugfix: ``browser.getLink()`` could fail if your HTML contained ``<a>``
elements with no href attribute
(https://github.com/zopefoundation/zope.testbrowser/pull/3).
- Implement single-spec version
OBS-URL: https://build.opensuse.org/request/show/627760
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.testbrowser?expand=0&rev=9