Skip to content

Simple browser automation example #723

Answered by mhanberg
bhougland18 asked this question in Q&A
Discussion options

You must be logged in to vote
Mix.install([:wallaby])

Application.ensure_all_started(:wallaby)

defmodule Example do
  use Wallaby.DSL

  def run do
    {:ok, session} = Wallaby.start_session()

    session
    |> visit("http://akash.im")
    |> page_title()
    |> IO.inspect()
  
   Wallaby.end_session(session)
  end
end

Example.run()

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@bhougland18
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by mhanberg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants