From cd5aaf5adfddc5cdb3dbd4a1559f33ab4e868970 Mon Sep 17 00:00:00 2001 From: Anton Sannikov Date: Sun, 26 Dec 2021 19:47:25 +0100 Subject: [PATCH] MFTF-877: Fix missed php config variables (webdriver proxy) --- .../Module/MagentoWebDriverDoctor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magento/FunctionalTestingFramework/Module/MagentoWebDriverDoctor.php b/src/Magento/FunctionalTestingFramework/Module/MagentoWebDriverDoctor.php index 1407c957b..69bcbef38 100644 --- a/src/Magento/FunctionalTestingFramework/Module/MagentoWebDriverDoctor.php +++ b/src/Magento/FunctionalTestingFramework/Module/MagentoWebDriverDoctor.php @@ -91,8 +91,8 @@ private function connectToSeleniumServer() $this->capabilities, $this->connectionTimeoutInMs, $this->requestTimeoutInMs, - $this->httpProxy, - $this->httpProxyPort + $this->webdriverProxy, + $this->webdriverProxyPort ); if (null !== $this->remoteWebDriver) { return;