From 23e4b3018a9fac7ca31913b600d4cd80c7ed013b Mon Sep 17 00:00:00 2001 From: Sebastian Haas Date: Fri, 8 Mar 2019 11:17:45 +0100 Subject: [PATCH] fix(doc): update link to selenium promise manager option --- docs/control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/control-flow.md b/docs/control-flow.md index 78aa91b16..bf82f0c38 100644 --- a/docs/control-flow.md +++ b/docs/control-flow.md @@ -12,7 +12,7 @@ Disabling the Control Flow In the future, the control flow is being removed (see [SeleniumHQ's github issue](https://github.com/SeleniumHQ/selenium/issues/2969) for details). To disable the control flow in your tests, you can use the -`SELENIUM_PROMISE_MANAGER: false` [config option](/lib/config.ts#L644). +`SELENIUM_PROMISE_MANAGER: false` [config option](/lib/config.ts#L714). Instead of the control flow, you can synchronize your commands with promise chaining or the upcoming ES7 feature `async`/`await`. See