Skip to content

Commit

Permalink
Branch was auto-updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
denbicloud authored Nov 25, 2024
2 parents a4915e2 + 7d2c631 commit f6ed158
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/page_objects/application_overview.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class ApplicationOverviewPage {

async goto() {
console.log('Goto Application overview Page');
await this.page.goto(`${this.baseURL}/#/applications`, { waitUntil: 'networkidle' });
await this.page.goto(`${this.baseURL}/#/applications`);
console.log(this.page.url());
expect(this.page.url()).toContain('/applications');
await this.page.waitForSelector(Util.by_data_test_id_str(this.SITE_LOADER), { state: 'hidden' });
Expand Down
2 changes: 1 addition & 1 deletion tests/page_objects/facility_application_overview.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class FacilityApplicationOverviewPage {

async goto() {
console.log('Goto Facility Application overview');
await this.page.goto(`${this.baseURL}/#/facility-manager/facilityApplications`, { waitUntil: 'networkidle' });
await this.page.goto(`${this.baseURL}/#/facility-manager/facilityApplications`);
console.log(this.page.url());

expect(this.page.url()).toContain('/#/facility-manager/facilityApplications');
Expand Down
2 changes: 1 addition & 1 deletion tests/page_objects/formular.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class FormularPage {

async goto() {
console.log('Goto Type-Overview Page');
await this.page.goto(`${this.baseURL}/#/applications/type-overview`, { waitUntil: 'networkidle' });
await this.page.goto(`${this.baseURL}/#/applications/type-overview`);
console.log(this.page.url());

expect(this.page.url()).toContain('/#/applications/type-overview');
Expand Down
4 changes: 2 additions & 2 deletions tests/page_objects/profile.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export class ProfilePage {
}

async goto() {
console.log('Goto Profile Page');
await this.page.goto(`${this.baseURL}/#/userinfo`, { waitUntil: 'networkidle' });
console.log(`Goto Profile Page - ${this.baseURL}/#/userinfo`);
await this.page.goto(`${this.baseURL}/#/userinfo`);
console.log(this.page.url());
await this.page.waitForSelector(Util.by_data_test_id_str("profile_information"))

Expand Down
2 changes: 1 addition & 1 deletion tests/page_objects/project_overview.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class ProjectOverViewPage {

async gotoProfilePage() {
console.log('Goto Profile Page')
await this.page.goto(`${this.baseURL}/#/userinfo`, { waitUntil: 'networkidle' })
await this.page.goto(`${this.baseURL}/#/userinfo`)
expect(this.page.url()).toContain('/userinfo')
await this.page.locator('text=Profile Information').waitFor()
}
Expand Down
2 changes: 1 addition & 1 deletion tests/page_objects/vo_overview.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class VoOverviewPage {

async goto() {
console.log('Goto vo manager overview Page')
await this.page.goto(this.baseURL + this.VO_OVERVIEW_URL, { waitUntil: 'networkidle' })
await this.page.goto(this.baseURL + this.VO_OVERVIEW_URL)
console.log(this.page.url())

expect(this.page.url()).toContain(this.VO_OVERVIEW_URL)
Expand Down

0 comments on commit f6ed158

Please sign in to comment.