Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
remove loggings
Browse files Browse the repository at this point in the history
  • Loading branch information
odalys-dataport committed Jun 12, 2024
1 parent c4b79b7 commit 70afedd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion page-objects/pages/NavigationLeftPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ async function areSubMenuItemsVisible(listOfExpectedSubItems) {
return item.trim();
});
const listOfSubItems = await getListOfSubItems();
// console.log('pampelmuse', listOfSubItems);
const isSame =
listOfExpectedSubItems.length == listOfSubItems.length &&
listOfSubItems.every(function (element, index) {
Expand Down
2 changes: 0 additions & 2 deletions runtime/helpers/elementHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ async function getValueOfElement(selector) {
async function getTextFromAllElements(selector) {
await waitHelpers.waitUntilPageLoads();
const listOfElements = await getListOfAllElements(selector);
console.log('pampelmuse', listOfElements);
let textList = await getTextListFromListOfElements(listOfElements);
return textList;
}
Expand All @@ -226,7 +225,6 @@ async function getListOfAllElements(selector) {
try {
await waitHelpers.waitUntilElementIsVisible(selector);
} catch (err) {
console.log('krokodil');
return [];
}
return driver.$$(selector);
Expand Down

0 comments on commit 70afedd

Please sign in to comment.