Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention Formasaurus #9

Merged
merged 2 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

intersphinx_disabled_reftypes = []
intersphinx_mapping = {
"formasaurus": ("https://formasaurus.readthedocs.io/en/latest/", None),
"lxml": ("https://lxml.de/apidoc/", None),
"parsel": ("https://parsel.readthedocs.io/en/stable", None),
"poet": ("https://web-poet.readthedocs.io/en/latest/", None),
Expand Down
6 changes: 6 additions & 0 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ visit parent elements until you reach the form element. For example:
element = element.getparent()
form = element

For some use cases, you can use :doc:`Formasaurus <formasaurus:index>`, a
ML-based solution that can can automatically find a form of a specified type
(e.g. a search form), its :ref:`default key-value pairs <data>`, and its
:ref:`submit button <click>`. It’s :ref:`formasaurus:usage` documentation
Gallaecio marked this conversation as resolved.
Show resolved Hide resolved
includes an example featuring form2request.


.. _data:

Expand Down
Loading