View Source Pages.Driver behaviour (Pages v0.6.2)

Defines types and behaviours that page drivers must implement.

Link to this section Summary

Callbacks

Click an element within a page. Implementation for Pages.click/4.

Render a change. Implementation for Pages.render_change/3.

Re-renders the page. Implementation for Pages.rerender/1.

Submit a form targeted by the given selector. Implementation for Pages.submit_form/2.

Fills in a form with the attributes and submits it. Implementation for Pages.submit_form/4.

Fills in a form with the attributes without submitting it. Implementation for Pages.update_form/4.

Navigate directly to a page. Implementation for Pages.visit/2.

Target a child component for actions. Implementation for Pages.with_child_component/3.

Link to this section Types

Link to this section Callbacks

Link to this callback

click(t, http_method, binary, selector)

View Source (optional)
@callback click(t(), Pages.http_method(), binary(), HtmlQuery.Css.selector()) ::
  t() | no_return()

Click an element within a page. Implementation for Pages.click/4.

Link to this callback

render_change(t, selector, t)

View Source (optional)
@callback render_change(t(), HtmlQuery.Css.selector(), Enum.t()) :: t()

Render a change. Implementation for Pages.render_change/3.

@callback rerender(t()) :: t()

Re-renders the page. Implementation for Pages.rerender/1.

Link to this callback

submit_form(t, selector)

View Source (optional)
@callback submit_form(t(), HtmlQuery.Css.selector()) :: t()

Submit a form targeted by the given selector. Implementation for Pages.submit_form/2.

Link to this callback

submit_form(t, selector, atom, attrs_t)

View Source (optional)
@callback submit_form(t(), HtmlQuery.Css.selector(), atom(), Pages.attrs_t()) :: t()

Fills in a form with the attributes and submits it. Implementation for Pages.submit_form/4.

Link to this callback

update_form(t, selector, atom, attrs_t)

View Source (optional)
@callback update_form(t(), HtmlQuery.Css.selector(), atom(), Pages.attrs_t()) :: t()

Fills in a form with the attributes without submitting it. Implementation for Pages.update_form/4.

@callback visit(t(), Path.t()) :: t()

Navigate directly to a page. Implementation for Pages.visit/2.

Link to this callback

with_child_component(t, child_id, function)

View Source (optional)
@callback with_child_component(t(), child_id :: binary(), (t() -> term())) :: t()

Target a child component for actions. Implementation for Pages.with_child_component/3.