Skip to content

Commit

Permalink
Fixed changes as suggested.
Browse files Browse the repository at this point in the history
  • Loading branch information
Panika-cgi committed Nov 26, 2024
1 parent f7e72ea commit 9a89763
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public PortalFundingAllocationTab(WebDriver driver) {

public void ClickReallocateFunds() throws InterruptedException {
try {
wait.until(ExpectedConditions.visibilityOf(requestToReallocateFunds));
wait.until(ExpectedConditions.elementToBeClickable(requestToReallocateFunds)).click();
}
catch(Exception e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public PortalFundingEnvelopeChangeRequest(WebDriver driver) {

public void setSummaryTextField(String summaryValue) {
summary.sendKeys(summaryValue);

}

public void setRequestDescriptionTextField(String requestDescriptionValue) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void initDriver() {
public void CreateFundingEnvelopeChangeRequest() throws InterruptedException {
try {
driver.get(QA_PORTAL_URL);
//test = extent.createTest("Test - Create Funding Envelope Change Request");
test = extent.createTest("Test - Create Funding Envelope Change Request");
test.info("Starting Test - Create Funding Envelope Change Request");

PortalSignInFirstPage objPortalSigninFirstPage = new PortalSignInFirstPage(driver);
Expand Down

0 comments on commit 9a89763

Please sign in to comment.