Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/mindstix/cb/page/BasePage.java
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public List<WebElement> getArrayOfElementByCSS(String webElementKey) {
} catch (NoSuchElementException exception) {
LOGGER.error("No Such Element Present on Web Page");
} catch (Exception exception) {
LOGGER.error("No Such Element Present on Web Page");
LOGGER.error("Unknown exception", exception);
}
return dropDownList;
}
Expand Down Expand Up @@ -241,7 +241,7 @@ public List<WebElement> getArrayOfElementByCSS(String suffix, String webElementK
} catch (NoSuchElementException exception) {
LOGGER.error("No Such Element Present on Web Page");
} catch (Exception exception) {
LOGGER.error("No Such Element Present on Web Page");
LOGGER.error("Unknown exception", exception);
}
return dropDownList;
}
Expand Down