From 4006b87cbd20855571a57fa2c016fb3b3fe70d6f Mon Sep 17 00:00:00 2001 From: Nathan Hoffmann Date: Fri, 11 Sep 2020 15:19:41 -0400 Subject: [PATCH] docs(pom.md): fix typo in example function name The patch renames the `goto` function in page object model documentation to `navigate`. Fixes #3854 --- docs/pom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pom.md b/docs/pom.md index 549089b0e3619..c70a082e2b006 100644 --- a/docs/pom.md +++ b/docs/pom.md @@ -27,7 +27,7 @@ class SearchPage { constructor(page) { this.page = page; } - async goto() { + async navigate() { await this.page.goto('https://bing.com'); } async search(text) {