Skip to content

Commit

Permalink
Update send_keys/2 docs to use correct module (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
vanderhoop authored Nov 9, 2022
1 parent f779aee commit c2e9837
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/wallaby/browser.ex
Original file line number Diff line number Diff line change
Expand Up @@ -660,9 +660,9 @@ defmodule Wallaby.Browser do
## Example
iex> Wallaby.Session.send_keys(session, ["Example Text", :enter])
iex> Wallaby.Session.send_keys(session, [:enter])
iex> Wallaby.Session.send_keys(session, [:shift, :enter])
iex> Wallaby.Browser.send_keys(session, ["Example Text", :enter])
iex> Wallaby.Browser.send_keys(session, [:enter])
iex> Wallaby.Browser.send_keys(session, [:shift, :enter])
### Note
Expand Down

0 comments on commit c2e9837

Please sign in to comment.