Skip to content

Commit

Permalink
Fixed page object method name in instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomationPanda committed Aug 7, 2023
1 parent 74c516d commit 7a50eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial/06-scaling-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Change the code to look like this:

await request.post('http://localhost:3000/api/boards', {data: {name: boardName}});
await myBoardsPage.load();
await myBoardsPage.clickBoard(boardName);
await myBoardsPage.openBoard(boardName);
});
```

Expand Down

0 comments on commit 7a50eaa

Please sign in to comment.