We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7423fe2 commit 271a764Copy full SHA for 271a764
pages/RegistrationPage.ts
@@ -42,8 +42,10 @@ export class RegistrationPage {
42
43
async navigateToRegistration() {
44
console.log("Navigating to registration page:", this.registrationUrl);
45
- await this.page.goto(this.registrationUrl, { waitUntil: "networkidle" });
46
- await this.header.waitFor({ state: "visible", timeout: 2000 });
+ await this.page.goto(this.registrationUrl);
+ console.log(this.page.url());
47
+ console.log("Waiting for registration page header to be visible");
48
+ await this.header.waitFor({ state: "visible", timeout: 10000 });
49
}
50
51
async fillRegistrationForm() {
0 commit comments