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
If you do e.g. .Assert( x => x.CustomAssertion( y => y.FindElementsByCssSelector( "i am not a valid selector" ).SomeAssertion() ) ) then Xenon will keep trying (courtesy of WaitUntil in BaseXenonTest) until the configured wait time expires. Obviously, it will never work so this is pointless.
WaitUntil should catch these specific terminal exceptions first and bail immediately before swallowing generic ones and retrying (see line BaseXenonTest line 29)
The text was updated successfully, but these errors were encountered:
If you do e.g.
.Assert( x => x.CustomAssertion( y => y.FindElementsByCssSelector( "i am not a valid selector" ).SomeAssertion() ) )
thenXenon
will keep trying (courtesy ofWaitUntil
inBaseXenonTest
) until the configured wait time expires. Obviously, it will never work so this is pointless.WaitUntil
should catch these specific terminal exceptions first and bail immediately before swallowing generic ones and retrying (see lineBaseXenonTest
line29
)The text was updated successfully, but these errors were encountered: