Oct 18, 2020
Hi Taehwa
You have some ways to jump directly to the my-items page without logging in:
- setting manually the cookie/localStorage that allows your front-end application to consider the user logged in
- if this is not so easy because of some unpredictable-data (like a token that’s important to be randomly generated or date-based generated) you could call the back-end API directly and, again, adding it to the cookies/localStorage
- exposing a shortcut from the front-end application that allows you to call directly the callback triggered by the “login” button (in order to speed up the login steps)
Cucumber or not doesn’t make differences 😉
Let me know if it helps 😉