-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/CBIIT/CBIIT-Test-Automation…
… into Alena
- Loading branch information
Showing
8 changed files
with
286 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,29 @@ Scenario: Edit contract assignments | |
And User clicks on ADD INVOICE Support Staff | ||
And User types "Test COR" in Invoice Support Staff field | ||
And User clicks on Test COR | ||
Then User will click on SAVE button | ||
Then User will click on SAVE button | ||
|
||
@CreateContractMessage @NESARH2 @Regression @playwright | ||
Scenario: Verify that a User can create a contract message | ||
When User clicks on Contracts | ||
And user selects "IT Commodities and Solutions" from the list of contracts | ||
And User clicks on Contract Messages | ||
And User clicks on NEW Message button | ||
And User types TEST CONTRACT MESSAGE in the Subject line | ||
And User types a text in the message body | ||
And User clicks on Submit button | ||
Then User verifies the submitted message contains "TEST CONTRACT MESSAGE" | ||
|
||
@VendorContacts @NESARH2 @Regression @playwright | ||
Scenario: Verify that a User can add vendor contacts to a contract | ||
When User clicks on Contracts | ||
And user selects "IT Commodities and Solutions" from the list of contracts | ||
And User clicks on Vendor Contacts | ||
And User clicks on ADD NEW button | ||
And User types "Test" in First Name field | ||
And User types "Manager" in Last Name field | ||
And User types "[email protected]" in Email field | ||
And User types "Manager" in Title field | ||
And User types "111-222-3344" in Phone field | ||
And User selects Business Representative from Contact Type | ||
Then User clicks on SAVE button |
2 changes: 1 addition & 1 deletion
2
...OM_BUSINESS/Oasys/Pages/I_Trust_Page.java → ...OM_BUSINESS/OASYS/Pages/I_Trust_Page.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package CUSTOM_BUSINESS.Oasys.Pages; | ||
package CUSTOM_BUSINESS.OASYS.Pages; | ||
|
||
public class I_Trust_Page { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...mentation/Oasys_Steps_Implementation.java → ...mentation/OASYS_Steps_Implementation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/test/java/CUSTOM_BUSINESS/OASYS/runners/RunOASYSRegressionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package CUSTOM_BUSINESS.OASYS.runners; | ||
|
||
import io.cucumber.testng.AbstractTestNGCucumberTests; | ||
import io.cucumber.testng.CucumberOptions; | ||
|
||
@CucumberOptions(plugin = {"html:target/OASYS-regression-reports/OASYS-regression-report.html", "json:target/cucumber.json", | ||
"rerun:target/failed.txt", | ||
"pretty", "com.aventstack.extentreports.cucumber.adapter.ExtentCucumberAdapter:"} | ||
, features = "src/test/java/CUSTOM_BUSINESS/OASYS/features" | ||
, glue = {"CUSTOM_BUSINESS.OASYS.Steps", "Hooks"} | ||
, tags = "@Regression" | ||
, dryRun = false | ||
) | ||
public class RunOASYSRegressionTest extends AbstractTestNGCucumberTests{ | ||
} |
15 changes: 0 additions & 15 deletions
15
src/test/java/CUSTOM_BUSINESS/Oasys/runners/RunOasysRegressionTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters