π‘οΈTesting
Wallaby
session
|> visit("/register")
|> assert_has(Query.text("Register"))
|> fill_in(text_field("user[name]"), with: "Bob")
|> fill_in(text_field("user[email]"), with: "[email protected]")
|> fill_in(text_field("user[password]"), with: "password")
|> click(button("Create account"))
|> assert_has(Query.text("Welcome"))# Run all tests, including wallaby:
mix test --include feature
# Run only wallaby
mix test --only featurev1.3.0 BUG WITH LIVE VIEW
Last updated
Was this helpful?
