fix: Fix minor typos (#2619)

Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io>
Co-authored-by: Ilkka Seppälä <iluwatar@users.noreply.github.com>
This commit is contained in:
Marcel Ribeiro-Dantas
2023-10-14 12:59:21 -03:00
committed by GitHub
parent be0d5e5953
commit f79782bea9
30 changed files with 43 additions and 42 deletions
@@ -59,7 +59,7 @@ public class AlbumListPage extends Page {
try {
page = this.webClient.getPage(PAGE_URL);
} catch (IOException e) {
LOGGER.error("An error occured on navigateToPage.", e);
LOGGER.error("An error occurred on navigateToPage.", e);
}
return this;
}
@@ -87,7 +87,7 @@ public class AlbumListPage extends Page {
((HtmlAnchor) anchor).click();
return new AlbumPage(webClient);
} catch (IOException e) {
LOGGER.error("An error occured on selectAlbum", e);
LOGGER.error("An error occurred on selectAlbum", e);
}
}
}
@@ -61,7 +61,7 @@ public class AlbumPage extends Page {
try {
page = this.webClient.getPage(PAGE_URL);
} catch (IOException e) {
LOGGER.error("An error occured on navigateToPage.", e);
LOGGER.error("An error occurred on navigateToPage.", e);
}
return this;
}
@@ -151,7 +151,7 @@ public class AlbumPage extends Page {
try {
cancelButton.click();
} catch (IOException e) {
LOGGER.error("An error occured on cancelChanges.", e);
LOGGER.error("An error occurred on cancelChanges.", e);
}
return new AlbumListPage(webClient);
}
@@ -167,7 +167,7 @@ public class AlbumPage extends Page {
try {
saveButton.click();
} catch (IOException e) {
LOGGER.error("An error occured on saveChanges.", e);
LOGGER.error("An error occurred on saveChanges.", e);
}
return this;
}
@@ -60,7 +60,7 @@ public class LoginPage extends Page {
try {
page = this.webClient.getPage(PAGE_URL);
} catch (IOException e) {
LOGGER.error("An error occured on navigateToPage.", e);
LOGGER.error("An error occurred on navigateToPage.", e);
}
return this;
}
@@ -111,7 +111,7 @@ public class LoginPage extends Page {
try {
loginButton.click();
} catch (IOException e) {
LOGGER.error("An error occured on login.", e);
LOGGER.error("An error occurred on login.", e);
}
return new AlbumListPage(webClient);
}