diff --git a/features/navigation.feature b/features/navigation.feature index 7098a4c..3df35fc 100644 --- a/features/navigation.feature +++ b/features/navigation.feature @@ -34,8 +34,14 @@ Feature: Navigation When I navigate to '' Then the page title is '' + @smoke Examples: | name | url | title | | Google | http://www.google.com | Google | | Yahoo | http://www.yahoo.com | Yahoo | | Bing | http://www.bing.com | Bing | + + @regression + Examples: + | name | url | title | + | duckduckgo | https://duckduckgo.com/ | DuckDuckGo — Privacy, simplified. | diff --git a/features/steps/navigation.js b/features/steps/navigation.js index 7e2828b..bff8d78 100644 --- a/features/steps/navigation.js +++ b/features/steps/navigation.js @@ -13,7 +13,7 @@ if (process.env.IS_TESTERY == "true") { const browser = new Builder().forBrowser("chrome").setChromeOptions(options).build(); -When("I navigate to {string}", async function (url) { +When("I navigate to {string}", { timeout: 60 * 1000 }, async function (url) { await browser.get(url); }); diff --git a/testery.yml b/testery.yml new file mode 100644 index 0000000..cc6c67c --- /dev/null +++ b/testery.yml @@ -0,0 +1,2 @@ +test_runner: + configuration_key: node-chrome.113-java.17-nodejs.16