@communicatehealth/browsertests
Advanced tools
Comparing version 1.0.8 to 1.1.0
# Changelog | ||
## 1.1.0 | ||
- Change to 'eager' page load strategy to avoid timeouts from blocked dependencies | ||
## 1.0.8 | ||
@@ -4,0 +8,0 @@ |
@@ -15,3 +15,6 @@ /** | ||
chromeOptionsArgs = options.debug ? [] : ['--headless','--no-sandbox', '--disable-dev-shm-usage'], | ||
chromeOptions = new chrome.Options().addArguments(chromeOptionsArgs).setLoggingPrefs(loggingPrefs), | ||
chromeOptions = new chrome.Options() | ||
.setPageLoadStrategy('eager') | ||
.addArguments(chromeOptionsArgs) | ||
.setLoggingPrefs(loggingPrefs), | ||
driver = new webdriver.Builder() | ||
@@ -18,0 +21,0 @@ .forBrowser('chrome') |
{ | ||
"name": "@communicatehealth/browsertests", | ||
"version": "1.0.8", | ||
"version": "1.1.0", | ||
"description": "Testing framework for testing Drupal sites using Selenium", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43323
1027