-
It seems like the loginByApi command doesn't allow tests to skip the UI log on form, despite logging in successfully. By cloning this repo and replacing lines 11-13 in the
The issue manifests. Is there something more that command needs to do in order to allow integration tests to skip the UI logon form the same way LoginByXState does? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@GrayedFox The Refer to the API tests for examples of using |
Beta Was this translation helpful? Give feedback.
@GrayedFox
loginByApi
is a command meant for the API tests only, not the UI tests.loginByXstate
is meant for UI tests.The
user-settings.spec.ts
is a UI test.Refer to the API tests for examples of using
loginByApi
.