Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2021-01-05 | 1.1 kB | |
Version 1.0.0.tar.gz | 2021-01-05 | 147.1 kB | |
Version 1.0.0.zip | 2021-01-05 | 162.3 kB | |
Totals: 3 Items | 310.5 kB | 0 |
This is the last release that will support Python 2.7. Thanks to the many contributors that made this release possible!
Main changes:
-
Added support for Python 3.8 and 3.9.
-
StatefulBrowser
has new propertiespage
,form
, andurl
, which can be used in place of the methodsget_current_page
,get_current_form
andget_url
respectively (e.g. the newx.page
is equivalent tox.get_current_page()
). These methods may be deprecated in a future release. [#175] -
StatefulBrowser.form
will raise anAttributeError
instead of returningNone
if no form has been selected yet. Note thatStatefulBrowser.get_current_form()
still returnsNone
for backward compatibility.
Bug fixes
-
Decompose
<select>
elements with the same name when adding a new input element to a form. [#297] -
The
params
anddata
kwargs passed tosubmit
will now properly be forwarded to the underlying request for GET methods (whereas previouslyparams
was being overwritten bydata
). [#343]