Skip to content

Commit

Permalink
Resolve Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
angelominisci committed Sep 3, 2024
1 parent 547a4b0 commit d574579
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package it.pn.frontend.e2e.pages.destinatario.personaGiuridica;

import it.pn.frontend.e2e.common.BasePage;
import it.pn.frontend.e2e.utility.WebTool;
import org.junit.Assert;
import org.openqa.selenium.*;
import org.openqa.selenium.interactions.Actions;
Expand Down Expand Up @@ -140,7 +141,6 @@ public void clickAddUserButton() {
}

public void waitLoadAggiungiUtentePage() {
try {
getWebDriverWait(10).withMessage("il bottone indietro Utenti / Aggiungi nuovo utente della pagina aggiungi nuovo utente non è visibile").until(ExpectedConditions.visibilityOf(indietroButton));
getWebDriverWait(10).withMessage("il titolo della pagina aggiungi nuovo utente non è visibile").until(ExpectedConditions.visibilityOf(titoloAggiungiUtente));
getWebDriverWait(10).withMessage("il sottotitolo della pagina aggiungi nuovo utente non è visibile").until(ExpectedConditions.visibilityOf(sottotitoloAggiungiUtente));
Expand All @@ -152,15 +152,11 @@ public void waitLoadAggiungiUtentePage() {
getWebDriverWait(10).withMessage("il combobox seleziona prodotto della pagina aggiungi nuovo utente non è visibile").until(ExpectedConditions.visibilityOf(selectProductDropdown));
getWebDriverWait(10).withMessage("il bottone continua della pagina aggiungi nuovo utente non è visibile").until(ExpectedConditions.visibilityOf(continueButton));
logger.info("Si visualizza correttamente aggiungi nuovo utente page");
} catch (TimeoutException e) {
logger.error("Non si visualizza correttamente aggiungi nuovo utente con errore:" + e.getMessage());
Assert.fail("Non si visualizza correttamente aggiungi nuovo utente page con errore:" + e.getMessage());
}
}

public void insertData(String codiceFiscale, String name, String surname, String email) throws InterruptedException {
codiceFiscaleBox.sendKeys(codiceFiscale);
Thread.sleep(2000);
WebTool.waitTime(2);
if (nameBox.getAttribute("value").equalsIgnoreCase(name) && surnameBox.getAttribute("value").equalsIgnoreCase(surname)) {
logger.info("Il nome e il cognome è generato correttamente");
} else {
Expand Down

0 comments on commit d574579

Please sign in to comment.