From e7912a16a7c525e3f9adf0650c77491ae7a13d81 Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Sun, 10 Jan 2021 16:52:17 +0200 Subject: [PATCH] Fix link to DesiredCapabilities file --- src/Codeception/Module/WebDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Codeception/Module/WebDriver.php b/src/Codeception/Module/WebDriver.php index aaac8af..c040acb 100644 --- a/src/Codeception/Module/WebDriver.php +++ b/src/Codeception/Module/WebDriver.php @@ -391,7 +391,7 @@ public function _initialize() /** * Change capabilities of WebDriver. Should be executed before starting a new browser session. - * This method expects a function to be passed which returns array or [WebDriver Desired Capabilities](https://github.com/php-webdriver/php-webdriver/blob/community/lib/Remote/DesiredCapabilities.php) object. + * This method expects a function to be passed which returns array or [WebDriver Desired Capabilities](https://github.com/php-webdriver/php-webdriver/blob/main/lib/Remote/DesiredCapabilities.php) object. * Additional [Chrome options](https://github.com/php-webdriver/php-webdriver/wiki/ChromeOptions) (like adding extensions) can be passed as well. * * ```php