change account-admin url

This commit is contained in:
Cindy Chang
2024-07-04 15:21:07 +08:00
parent 19f7ae5f38
commit ca4d6d0127
9 changed files with 16 additions and 17 deletions

View File

@@ -2,11 +2,11 @@ const MSG_ACCOUNT_NOT_UNIQUE = 'Account has already been registered.';
describe('Account duplication check.', ()=>{
beforeEach(() => {
cy.visit('https://REDACTED-HOST/account/account-admin');
cy.visit('https://REDACTED-HOST/account-admin');
const username = 'cindy';
const password = 'REDACTED-PWD';
cy.visit('https://REDACTED-HOST/account/account-admin');
cy.visit('https://REDACTED-HOST/account-admin');
cy.get('input[id="account"]').type(username);
cy.get('input[id="password"]').type(password);