Skip to content

Commit ec11476

Browse files
committed
ACQE-4890: Fix WAIT_TIMEOUT Hardcoding
- Defining WAIT_TIMEOUT in the .env solves issues.
1 parent a1ba0b9 commit ec11476

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: etc/config/.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ MODULE_ALLOWLIST=Magento_Framework,ConfigurableProductWishlist,ConfigurableProdu
5757
#ALLOW_SKIPPED=true
5858

5959
#*** Default timeout for wait actions
60-
#WAIT_TIMEOUT=30
60+
WAIT_TIMEOUT=60
6161

6262
#*** Uncomment and set to enable all tests, regardless of passing status, to have all their Allure artifacts.
6363
#VERBOSE_ARTIFACTS=true

Diff for: etc/config/functional.suite.dist.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ modules:
2727
window_size: 1280x1024
2828
username: "%MAGENTO_ADMIN_USERNAME%"
2929
password: "%MAGENTO_ADMIN_PASSWORD%"
30-
pageload_timeout: "30"
31-
request_timeout: "30"
32-
connection_timeout: "30"
30+
pageload_timeout: "%WAIT_TIMEOUT%"
31+
request_timeout: "%WAIT_TIMEOUT%"
32+
connection_timeout: "%WAIT_TIMEOUT%"
3333
host: "%SELENIUM_HOST%"
3434
port: "%SELENIUM_PORT%"
3535
protocol: "%SELENIUM_PROTOCOL%"

0 commit comments

Comments
 (0)