Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
angelominisci committed Oct 18, 2024
1 parent 320b43c commit 7777e2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public void downloadAttestazione(int rows) {
logger.info("ROWS TABLE..." + rows);
logger.info("ROWS SELEZIONATA: " + index);
WebElement riga = null;
if (disserviziTableRows.size() >= index) {
if (disserviziTableRows.size() > index) {
logger.info("ROWS SELEZIONATA1: " + index);
riga = disserviziTableRows.get(index);
} else {
Expand Down

0 comments on commit 7777e2f

Please sign in to comment.