In the package.json define the env you want to point to in the serve script.
You can test the login with the credentials you need, by typing the user and password in the method login in the serve.vue file.
// serve.vue
...
methods: {
...,
login: () => {
OasisSession.doLogin({
user: 'user', // Enter the username
pass: 'password', // Enter password
});
},
}
Then you only need to execute the npm run serve command and click the Login button in the testing Security view:
ℹ️ If you want to do an automatic login to work in other flow, you can follow the 3rd step of‣