From d67afee80b80b943d81204434ad4b4817178a6c1 Mon Sep 17 00:00:00 2001 From: Lawrence Luna Date: Wed, 21 Apr 2021 10:39:18 -0400 Subject: [PATCH 1/7] Added Test for iCite search. --- cucumberTest/build.gradle.kts | 11 ++++ .../src/test/java/iCite/SimpleSearch.java | 57 +++++++++++++++++++ .../test/resources/iCite/SimpleSearch.feature | 9 +++ 3 files changed, 77 insertions(+) create mode 100644 cucumberTest/src/test/java/iCite/SimpleSearch.java create mode 100644 cucumberTest/src/test/resources/iCite/SimpleSearch.feature diff --git a/cucumberTest/build.gradle.kts b/cucumberTest/build.gradle.kts index 7fa314e..b5b2454 100644 --- a/cucumberTest/build.gradle.kts +++ b/cucumberTest/build.gradle.kts @@ -22,4 +22,15 @@ task("cucumberTodo") { args = listOf("--plugin", "pretty", "--glue", "todo", "src/test/resources/todo") } } +} + +task("cucumberiCite") { + dependsOn("assemble", "testClasses") + doLast { + javaexec { + main = "io.cucumber.core.cli.Main" + classpath = configurations.getByName("cucumberRuntime") + sourceSets.main.get().output + sourceSets.test.get().output + args = listOf("--plugin", "pretty", "--glue", "iCite", "src/test/resources/iCite") + } + } } \ No newline at end of file diff --git a/cucumberTest/src/test/java/iCite/SimpleSearch.java b/cucumberTest/src/test/java/iCite/SimpleSearch.java new file mode 100644 index 0000000..b93231e --- /dev/null +++ b/cucumberTest/src/test/java/iCite/SimpleSearch.java @@ -0,0 +1,57 @@ +package iCite; + +import io.cucumber.java.en.Given; +import io.cucumber.java.en.Then; +import io.cucumber.java.en.When; +import org.openqa.selenium.By; +import org.openqa.selenium.WebDriver; +import org.openqa.selenium.WebElement; +import org.openqa.selenium.firefox.FirefoxDriver; +import org.openqa.selenium.support.ui.ExpectedConditions; +import org.openqa.selenium.support.ui.WebDriverWait; + +import java.util.concurrent.TimeUnit; + + +public class SimpleSearch { + + private WebDriver driver; + + + @Given("I am on the iCite page.") + public void iAmOnTheiCitePage() { + driver = new FirefoxDriver(); + driver.get("https://icite.od.nih.gov/covid19/search/"); + //lets the application compile + driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); + } + + @When("I click my mouse in the Search query field.") + public void iClickInTheSearchQueryField() + + { + // driver.findElement(By.id("searchBox")).click(); + WebElement element = driver.findElement(By.id("searchBox")); + WebDriverWait wait = new WebDriverWait(driver, 20); //here, wait time is 20 seconds + + wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds + element.click(); //now it clicks on element + }; + @When("I enter pcsk9.") + public void ienterpcsk9() { + driver.findElement(By.id("searchBox")).sendKeys("pcsk9"); + } + + @When("I click the magnifying glass.") + public void magnifyingGlass() { + driver.findElement(By.id("searchButton")).click(); + } + + @Then("the results for pcsk9 will be displayed.") + public void theResultsWillBeDisplayed() + + { + driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); + } + +} diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch.feature new file mode 100644 index 0000000..9436a77 --- /dev/null +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch.feature @@ -0,0 +1,9 @@ +Feature: Performing a search. + Scenario Outline: As a user, I want to perform a Search. + Given I am on the iCite page. + When I click my mouse in the Search query field. + And I enter pcsk9. + And I click the magnifying glass. + Then the results for pcsk9 will be displayed. + + From 7a7143b8b0f530dd0e296323e9fb6b5e4ef69401 Mon Sep 17 00:00:00 2001 From: Lawrence Luna Date: Wed, 21 Apr 2021 15:25:25 -0400 Subject: [PATCH 2/7] Added Test for using AND operator. --- .../src/test/java/iCite/SimpleSearch.java | 46 +++++++++++++++---- .../resources/iCite/SimpleSearch2.feature | 9 ++++ 2 files changed, 47 insertions(+), 8 deletions(-) create mode 100644 cucumberTest/src/test/resources/iCite/SimpleSearch2.feature diff --git a/cucumberTest/src/test/java/iCite/SimpleSearch.java b/cucumberTest/src/test/java/iCite/SimpleSearch.java index b93231e..09897f1 100644 --- a/cucumberTest/src/test/java/iCite/SimpleSearch.java +++ b/cucumberTest/src/test/java/iCite/SimpleSearch.java @@ -12,12 +12,10 @@ import java.util.concurrent.TimeUnit; - +//SimpleSearch public class SimpleSearch { - private WebDriver driver; - @Given("I am on the iCite page.") public void iAmOnTheiCitePage() { driver = new FirefoxDriver(); @@ -25,15 +23,12 @@ public void iAmOnTheiCitePage() { //lets the application compile driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); } - @When("I click my mouse in the Search query field.") public void iClickInTheSearchQueryField() - { // driver.findElement(By.id("searchBox")).click(); WebElement element = driver.findElement(By.id("searchBox")); WebDriverWait wait = new WebDriverWait(driver, 20); //here, wait time is 20 seconds - wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds element.click(); //now it clicks on element }; @@ -41,12 +36,10 @@ public void iClickInTheSearchQueryField() public void ienterpcsk9() { driver.findElement(By.id("searchBox")).sendKeys("pcsk9"); } - @When("I click the magnifying glass.") public void magnifyingGlass() { driver.findElement(By.id("searchButton")).click(); } - @Then("the results for pcsk9 will be displayed.") public void theResultsWillBeDisplayed() @@ -54,4 +47,41 @@ public void theResultsWillBeDisplayed() driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); } +//Simple Search using AND function + + @When("I search for COVID and SYMPTOMS.") + public void isearchforcovidandsymptoms() + + { + driver.findElement(By.id("searchBox")).sendKeys("COVID and SYMPTOMS"); + } + + @Then("all results for COVID as well as SYMPTOMS will be displayed.") + public void alltheresultsforcovidaswellassymptomswillbedisplayed() + + { + driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); + } + +//Opening the help menu + + @When("I click the menu button.") + public void iclickthemenubutton() + { + driver.findElement(By.id("app-options")).click(); + } + + @When("I click the User Guide link.") + public void iclicktheuserguidelink() + { + driver.findElement(By.id("User Guide")).click(); + } + + @Then("the User Guide will be displayed.") + public void theuserguidewillbedisplayed() + + { + driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); + } } + diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature new file mode 100644 index 0000000..8b547e8 --- /dev/null +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature @@ -0,0 +1,9 @@ +Feature: Performing a search with AND function +Scenario Outline: As a user, I want to perform a search using the AND function. + Given I am on the iCite page. + When I click my mouse in the Search query field. + And I search for COVID and SYMPTOMS. + And I click the magnifying glass. + Then all results for COVID as well as SYMPTOMS will be displayed. + + From 973c63e67434f5a98f6cdf508eeba40660e56ed2 Mon Sep 17 00:00:00 2001 From: Lawrence Luna Date: Mon, 3 May 2021 17:18:01 -0400 Subject: [PATCH 3/7] Added Test for using AND operator. --- .../src/test/java/iCite/SimpleSearch.java | 89 ++++++++++++++----- .../resources/iCite/SimpleSearch4.feature | 12 +++ 2 files changed, 79 insertions(+), 22 deletions(-) create mode 100644 cucumberTest/src/test/resources/iCite/SimpleSearch4.feature diff --git a/cucumberTest/src/test/java/iCite/SimpleSearch.java b/cucumberTest/src/test/java/iCite/SimpleSearch.java index 09897f1..9c13d8d 100644 --- a/cucumberTest/src/test/java/iCite/SimpleSearch.java +++ b/cucumberTest/src/test/java/iCite/SimpleSearch.java @@ -12,6 +12,7 @@ import java.util.concurrent.TimeUnit; + //SimpleSearch public class SimpleSearch { private WebDriver driver; @@ -23,65 +24,109 @@ public void iAmOnTheiCitePage() { //lets the application compile driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); } + @When("I click my mouse in the Search query field.") - public void iClickInTheSearchQueryField() - { - // driver.findElement(By.id("searchBox")).click(); + public void iClickInTheSearchQueryField() { + // driver.findElement(By.id("searchBox")).click(); WebElement element = driver.findElement(By.id("searchBox")); WebDriverWait wait = new WebDriverWait(driver, 20); //here, wait time is 20 seconds wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds element.click(); //now it clicks on element - }; + } + @When("I enter pcsk9.") public void ienterpcsk9() { driver.findElement(By.id("searchBox")).sendKeys("pcsk9"); } + @When("I click the magnifying glass.") public void magnifyingGlass() { driver.findElement(By.id("searchButton")).click(); } - @Then("the results for pcsk9 will be displayed.") - public void theResultsWillBeDisplayed() - { + @Then("the results for pcsk9 will be displayed.") + public void theResultsWillBeDisplayed() { driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); } //Simple Search using AND function @When("I search for COVID and SYMPTOMS.") - public void isearchforcovidandsymptoms() - - { + public void isearchforcovidandsymptoms() { driver.findElement(By.id("searchBox")).sendKeys("COVID and SYMPTOMS"); } @Then("all results for COVID as well as SYMPTOMS will be displayed.") - public void alltheresultsforcovidaswellassymptomswillbedisplayed() + public void alltheresultsforcovidaswellassymptomswillbedisplayed() { + driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); + } - { +//Simple Search using OR function + + @When("I search for COVID or SYMPTOMS.") + public void isearchforcovidorsymptoms() { + driver.findElement(By.id("searchBox")).sendKeys("COVID or SYMPTOMS"); + } + + @Then("all results for COVID or SYMPTOMS will be displayed.") + public void alltheresultsforcovidorsymptomswillbedisplayed() { driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); } + //Simple Search using a date range -//Opening the help menu + @When("I click advancedFilter.") + public void iclickadvancedFilter() + { + //driver.findElement(By.id("advancedFilter")); + WebElement element = driver.findElement(By.id("advancedFilter")); + WebDriverWait wait = new WebDriverWait(driver, 20); //here, wait time is 20 seconds + wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds + element.click(); //now it clicks on element + } + + @When("I click the From box.") + public void iclickthefrombox() - @When("I click the menu button.") - public void iclickthemenubutton() { - driver.findElement(By.id("app-options")).click(); + //"FROM BOX" + WebElement element = driver.findElement(By.xpath("//input[@class='form-control']")); + WebDriverWait wait = new WebDriverWait(driver, 5); //here, wait time is 5 seconds + wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds + element.click(); //now it clicks on element + } + @When("I enter 2021-03-03.") + public void ienter20210303() + { + //"Enters start date. This is the line for the FROM Date Picker") + driver.findElement(By.xpath("//input[@class='form-control']")).sendKeys("2021-03-03"); } - @When("I click the User Guide link.") - public void iclicktheuserguidelink() + @When("I click the To box.") + public void iclickthetobox() { - driver.findElement(By.id("User Guide")).click(); + //"TO BOX" + WebElement element = driver.findElement(By.xpath("(//input[@class='form-control'])[2]")); + WebDriverWait wait = new WebDriverWait(driver, 5); //here, wait time is 5 seconds + wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds + element.click(); //now it clicks on element } + @When("I enter 2021-04-26.") + public void ienter20210426() + { + //"Enters start date. This is the line for the To Date Picker") + driver.findElement(By.xpath("(//input[@class='form-control'])[2]")).sendKeys("2021-04-26"); - @Then("the User Guide will be displayed.") - public void theuserguidewillbedisplayed() + } + @When("I click the Apply filters button.") + public void iclicktheapplyfiltersbutton() + { + //Clicks apply filter button + driver.findElement(By.xpath("//button[contains(@class,'btn btn-sm')]")).click(); + } + @Then("all publications will be displayed.") + public void allpublicationswithinthedaterangewillbedisplayedandiamdonewithmytest() { driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); } } - diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch4.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch4.feature new file mode 100644 index 0000000..6e11edf --- /dev/null +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch4.feature @@ -0,0 +1,12 @@ +Feature: Searching by date range. + Scenario Outline: As a user, I want to perform a search by a date range. + Given I am on the iCite page. + When I click advancedFilter. + And I click the From box. + And I enter 2021-03-03. + And I click the To box. + And I enter 2021-04-26. + And I click the Apply filters button. + Then all publications will be displayed. + + From 3ed2d94b1f3eec27ca7c8da119e14a6fae522bed Mon Sep 17 00:00:00 2001 From: Lawrence Luna Date: Tue, 4 May 2021 16:15:28 -0400 Subject: [PATCH 4/7] Added test for searching within a date range as well as keyboard navigation with the TAB button. --- .../src/test/java/iCite/SimpleSearch.java | 40 +++++++++++++++++-- .../resources/iCite/SimpleSearch3.feature | 9 +++++ .../resources/iCite/SimpleSearch5.feature | 9 +++++ 3 files changed, 55 insertions(+), 3 deletions(-) create mode 100644 cucumberTest/src/test/resources/iCite/SimpleSearch3.feature create mode 100644 cucumberTest/src/test/resources/iCite/SimpleSearch5.feature diff --git a/cucumberTest/src/test/java/iCite/SimpleSearch.java b/cucumberTest/src/test/java/iCite/SimpleSearch.java index 9c13d8d..a8aa3f2 100644 --- a/cucumberTest/src/test/java/iCite/SimpleSearch.java +++ b/cucumberTest/src/test/java/iCite/SimpleSearch.java @@ -1,21 +1,22 @@ package iCite; +import io.cucumber.gherkin.AstNode; import io.cucumber.java.en.Given; import io.cucumber.java.en.Then; import io.cucumber.java.en.When; -import org.openqa.selenium.By; -import org.openqa.selenium.WebDriver; -import org.openqa.selenium.WebElement; +import org.openqa.selenium.*; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; +import javax.swing.*; import java.util.concurrent.TimeUnit; //SimpleSearch public class SimpleSearch { private WebDriver driver; + private AstNode set; @Given("I am on the iCite page.") public void iAmOnTheiCitePage() { @@ -129,4 +130,37 @@ public void allpublicationswithinthedaterangewillbedisplayedandiamdonewithmytest { driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); } + + //Keyboard Navigation TAB button + + @When("I click the HOME button.") + public void iclickthehomebutton() + { + driver.findElement(By.xpath("//img[contains(@class,'img-responsive GFX3K41BN')]")).click(); + } + + @When("I click in the SEARCH field.") + public void iclickinthesearchfield() + { + WebElement element = driver.findElement(By.xpath("//input[@class='form-control GFX3K41IP']")); + WebDriverWait wait = new WebDriverWait(driver, 20); //here, wait time is 20 seconds + wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds + element.click(); //now it clicks on element + } + + @When("I click the TAB button.") + public void iclickthetabbutton() + { + WebElement inputField = driver.findElement(By.xpath("//input[@class='form-control GFX3K41IP']")); + inputField.sendKeys(Keys.TAB); + + } + + @Then("I will be moved to the next focusable field.") + public void iwillbemovedtothenextfocusablefield() + { + driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); + } + } + diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature new file mode 100644 index 0000000..a9b113d --- /dev/null +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature @@ -0,0 +1,9 @@ +Feature: Open the User Guide. + Scenario Outline: As a user, I want to perform a search using the OR function. + Given I am on the iCite page. + When I click my mouse in the Search query field. + And I search for COVID or SYMPTOMS. + And I click the magnifying glass. + Then all results for COVID or SYMPTOMS will be displayed. + + diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch5.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch5.feature new file mode 100644 index 0000000..70cb2a4 --- /dev/null +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch5.feature @@ -0,0 +1,9 @@ +Feature: Navigating with the keyboard. + Scenario Outline: As a user, I want to be able to navigate to different focusable items on the keyboard. + Given I am on the iCite page. + When I click the HOME button. + And I click in the SEARCH field. + And I click the TAB button. + Then I will be moved to the next focusable field. + + From 179f5252c2322d0580986ac9b4223973ccd560f8 Mon Sep 17 00:00:00 2001 From: Lawrence Luna Date: Mon, 28 Jun 2021 16:18:19 -0500 Subject: [PATCH 5/7] Initial Automation test suite. - Search - Search 'And' - Search 'Or' - Search by date range --- .../src/test/java/iCite/SimpleSearch.java | 70 +++++-------------- .../resources/iCite/SimpleSearch2.feature | 2 - .../resources/iCite/SimpleSearch3.feature | 2 - .../resources/iCite/SimpleSearch4.feature | 6 +- .../resources/iCite/SimpleSearch5.feature | 9 --- 5 files changed, 21 insertions(+), 68 deletions(-) delete mode 100644 cucumberTest/src/test/resources/iCite/SimpleSearch5.feature diff --git a/cucumberTest/src/test/java/iCite/SimpleSearch.java b/cucumberTest/src/test/java/iCite/SimpleSearch.java index a8aa3f2..97156ea 100644 --- a/cucumberTest/src/test/java/iCite/SimpleSearch.java +++ b/cucumberTest/src/test/java/iCite/SimpleSearch.java @@ -1,22 +1,22 @@ package iCite; -import io.cucumber.gherkin.AstNode; import io.cucumber.java.en.Given; import io.cucumber.java.en.Then; import io.cucumber.java.en.When; import org.openqa.selenium.*; +import org.openqa.selenium.WebDriver; +import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; +import org.openqa.selenium.interactions.Actions; -import javax.swing.*; import java.util.concurrent.TimeUnit; //SimpleSearch public class SimpleSearch { private WebDriver driver; - private AstNode set; @Given("I am on the iCite page.") public void iAmOnTheiCitePage() { @@ -75,92 +75,56 @@ public void alltheresultsforcovidorsymptomswillbedisplayed() { } //Simple Search using a date range - @When("I click advancedFilter.") - public void iclickadvancedFilter() - { - //driver.findElement(By.id("advancedFilter")); - WebElement element = driver.findElement(By.id("advancedFilter")); - WebDriverWait wait = new WebDriverWait(driver, 20); //here, wait time is 20 seconds + @When("I click the Advanced Filter icon.") + public void iclicktheadvancedfiltericon() { + WebElement element = driver.findElement(By.xpath("//button[@title='Advanced Filters']")); + WebDriverWait wait = new WebDriverWait(driver, 5); //here, wait time is 5 seconds wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds element.click(); //now it clicks on element } @When("I click the From box.") - public void iclickthefrombox() - - { + public void iclickthefrombox() { //"FROM BOX" WebElement element = driver.findElement(By.xpath("//input[@class='form-control']")); WebDriverWait wait = new WebDriverWait(driver, 5); //here, wait time is 5 seconds wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds element.click(); //now it clicks on element } + @When("I enter 2021-03-03.") - public void ienter20210303() - { + public void ienter20210303() { //"Enters start date. This is the line for the FROM Date Picker") driver.findElement(By.xpath("//input[@class='form-control']")).sendKeys("2021-03-03"); } @When("I click the To box.") - public void iclickthetobox() - { + public void iclickthetobox() { //"TO BOX" WebElement element = driver.findElement(By.xpath("(//input[@class='form-control'])[2]")); WebDriverWait wait = new WebDriverWait(driver, 5); //here, wait time is 5 seconds wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds element.click(); //now it clicks on element } + @When("I enter 2021-04-26.") - public void ienter20210426() - { + public void ienter20210426() { //"Enters start date. This is the line for the To Date Picker") driver.findElement(By.xpath("(//input[@class='form-control'])[2]")).sendKeys("2021-04-26"); } @When("I click the Apply filters button.") - public void iclicktheapplyfiltersbutton() - { + public void iclicktheapplyfiltersbutton() { //Clicks apply filter button driver.findElement(By.xpath("//button[contains(@class,'btn btn-sm')]")).click(); - } - @Then("all publications will be displayed.") - public void allpublicationswithinthedaterangewillbedisplayedandiamdonewithmytest() - { - driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); - } - - //Keyboard Navigation TAB button - @When("I click the HOME button.") - public void iclickthehomebutton() - { - driver.findElement(By.xpath("//img[contains(@class,'img-responsive GFX3K41BN')]")).click(); } - @When("I click in the SEARCH field.") - public void iclickinthesearchfield() - { - WebElement element = driver.findElement(By.xpath("//input[@class='form-control GFX3K41IP']")); - WebDriverWait wait = new WebDriverWait(driver, 20); //here, wait time is 20 seconds - wait.until(ExpectedConditions.visibilityOf(element)); //this will wait for element to be visible for 20 seconds - element.click(); //now it clicks on element - } - - @When("I click the TAB button.") - public void iclickthetabbutton() - { - WebElement inputField = driver.findElement(By.xpath("//input[@class='form-control GFX3K41IP']")); - inputField.sendKeys(Keys.TAB); - - } - - @Then("I will be moved to the next focusable field.") - public void iwillbemovedtothenextfocusablefield() - { + @Then("all publications will be displayed.") + public void allpublicationswithinthedaterangewillbedisplayedandiamdonewithmytest() { driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); } -} +} \ No newline at end of file diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature index 8b547e8..9089759 100644 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature @@ -5,5 +5,3 @@ Scenario Outline: As a user, I want to perform a search using the AND function. And I search for COVID and SYMPTOMS. And I click the magnifying glass. Then all results for COVID as well as SYMPTOMS will be displayed. - - diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature index a9b113d..022fe18 100644 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature @@ -5,5 +5,3 @@ Feature: Open the User Guide. And I search for COVID or SYMPTOMS. And I click the magnifying glass. Then all results for COVID or SYMPTOMS will be displayed. - - diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch4.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch4.feature index 6e11edf..a2e8e13 100644 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch4.feature +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch4.feature @@ -1,7 +1,7 @@ Feature: Searching by date range. - Scenario Outline: As a user, I want to perform a search by a date range. + Scenario: As a user, I want to perform a search by a date range. Given I am on the iCite page. - When I click advancedFilter. + When I click the Advanced Filter icon. And I click the From box. And I enter 2021-03-03. And I click the To box. @@ -10,3 +10,5 @@ Feature: Searching by date range. Then all publications will be displayed. + + diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch5.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch5.feature deleted file mode 100644 index 70cb2a4..0000000 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch5.feature +++ /dev/null @@ -1,9 +0,0 @@ -Feature: Navigating with the keyboard. - Scenario Outline: As a user, I want to be able to navigate to different focusable items on the keyboard. - Given I am on the iCite page. - When I click the HOME button. - And I click in the SEARCH field. - And I click the TAB button. - Then I will be moved to the next focusable field. - - From cc9d607e78822c4966473549f5c409e685e7beb5 Mon Sep 17 00:00:00 2001 From: Lawrence Luna Date: Mon, 28 Jun 2021 16:24:38 -0500 Subject: [PATCH 6/7] Changes by karl --- cucumberTest/src/test/resources/iCite/SimpleSearch.feature | 6 ++---- cucumberTest/src/test/resources/iCite/SimpleSearch2.feature | 2 +- cucumberTest/src/test/resources/iCite/SimpleSearch3.feature | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch.feature index 9436a77..ebecd66 100644 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch.feature +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch.feature @@ -1,9 +1,7 @@ Feature: Performing a search. - Scenario Outline: As a user, I want to perform a Search. + Scenario: As a user, I want to perform a Search. Given I am on the iCite page. When I click my mouse in the Search query field. And I enter pcsk9. And I click the magnifying glass. - Then the results for pcsk9 will be displayed. - - + Then the results for pcsk9 will be displayed. \ No newline at end of file diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature index 9089759..dffb04a 100644 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch2.feature @@ -1,5 +1,5 @@ Feature: Performing a search with AND function -Scenario Outline: As a user, I want to perform a search using the AND function. +Scenario: As a user, I want to perform a search using the AND function. Given I am on the iCite page. When I click my mouse in the Search query field. And I search for COVID and SYMPTOMS. diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature index 022fe18..49b6121 100644 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature @@ -1,5 +1,5 @@ Feature: Open the User Guide. - Scenario Outline: As a user, I want to perform a search using the OR function. + Scenario: As a user, I want to perform a search using the OR function. Given I am on the iCite page. When I click my mouse in the Search query field. And I search for COVID or SYMPTOMS. From 0621ad30843b46ddc447b2b5c76b9626c1173a0f Mon Sep 17 00:00:00 2001 From: Lawrence Luna Date: Mon, 28 Jun 2021 16:43:29 -0500 Subject: [PATCH 7/7] Initial Automation test suite. - Search - Search 'And' - Search 'Or' - Search by date range --- cucumberTest/src/test/resources/iCite/SimpleSearch3.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature index 49b6121..a2fa6a5 100644 --- a/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature +++ b/cucumberTest/src/test/resources/iCite/SimpleSearch3.feature @@ -1,4 +1,4 @@ -Feature: Open the User Guide. +Feature: Search with OR Scenario: As a user, I want to perform a search using the OR function. Given I am on the iCite page. When I click my mouse in the Search query field.