I am a consultant and implement software for clients. I would like to create browser automation tests for an application that isn’t mine to ensure the configuration works as expected. I like the API of Wallaby, but I am struggling to figure out how to set it up when the application isn’t my own. Most of the instructions seem to be geared toward writing test for Phoenix applications.
Do anyone have an example of a simple example of going to website such as wikipedia?
How would the test_helper.exs :base_url be configured for the above example?:
test/test_helper.exs
Application.put_env(:wallaby, :base_url, YourAppWeb.Endpoint.url)
I am sorry, I am still very new to Elixir and the ecosystem.
Thank you!
Ben