From 89469011002de3df892712c8bad0f534a96774e1 Mon Sep 17 00:00:00 2001 From: Surma Date: Thu, 27 Apr 2017 12:28:36 +0100 Subject: [PATCH] Fix example in docs --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 13d3fc7..e41be6f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,8 +55,8 @@ browsers.forEach(browser => { browser.getSeleniumDriver() .then(webdriverInstance => - webdriverInstance.get('https://google.com/'); - .then(_ => webdriverInstance.wait(selenium.until.titleIs('Google'), 1000); + webdriverInstance.get('https://google.com/') + .then(_ => webdriverInstance.wait(selenium.until.titleIs('Google'), 1000)) ); }); ```