You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Application.ensure_all_started(:wallaby)
defmodule UitestsTest do
use Wallaby.DSL
use ExUnit.Case
doctest Uitests
test "greets the world" do
assert Uitests.hello() == :world
end
test "hello wallaby" do
{:ok, session} = Wallaby.start_session()
session
|> visit("our_website_url")
|> page_title()
|> IO.inspect()
Wallaby.end_session(session)
end
end
Test fails with error
** (Wallaby.JSError) There was an uncaught JavaScript error:
Expected behavior
As per the other issues and documentation, this should make wallaby ignore the js errors?
Elixir and Erlang/OTP versions
Operating system
Mac OSX Ventura 13.3.1
Browser
Chrome
Driver
Chromedriver
Correct Configuration
Current behavior
Config:
Sample Test:
Test fails with error
** (Wallaby.JSError) There was an uncaught JavaScript error:
Expected behavior
As per the other issues and documentation, this should make wallaby ignore the js errors?
Test Code & HTML
stacktrace: (wallaby 0.30.6) lib/wallaby/chrome/logger.ex:8: Wallaby.Chrome.Logger.parse_log/1 (elixir 1.15.4) lib/enum.ex:984: Enum."-each/2-lists^foreach/1-0-"/2 (wallaby 0.30.6) lib/wallaby/driver/log_checker.ex:12: Wallaby.Driver.LogChecker.check_logs!/2 (wallaby 0.30.6) lib/wallaby/browser.ex:1269: Wallaby.Browser.visit/2 test/uitests_test.exs:16: (test)
Demonstration Project
No response
The text was updated successfully, but these errors were encountered: