Improve error handling in assertElementNotPresent of test/e2e/beta/helpers.js

feature/default_network_editable
Dan Miller 6 years ago
parent e2be22a4b7
commit c00d0daeb5
  1. 10
      test/e2e/beta/helpers.js

@ -122,12 +122,14 @@ async function closeAllWindowHandlesExcept (driver, exceptions, windowHandles) {
}
async function assertElementNotPresent (webdriver, driver, by) {
let dataTab
try {
const dataTab = await findElement(driver, by, 4000)
dataTab = await findElement(driver, by, 4000)
} catch (err) {
console.log(err)
assert(err instanceof webdriver.error.NoSuchElementError || err instanceof webdriver.error.TimeoutError)
}
if (dataTab) {
assert(false, 'Data tab should not be present')
}
} catch (err) {
assert(err instanceof webdriver.error.NoSuchElementError)
}
}

Loading…
Cancel
Save