Hi,
when using verifyElementVisible for an object that is not visible, it throws an error although I specify to continue on failure. Is there a syntax issue with the line I am using? I dont want it to throw an error if the element is not visible and just go to the next statement.
if (WebUI.verifyElementVisible(findTestObject(‘Object Repository/Page_Stratocast portal - Cloud administrators/CloudAdministrators’),FailureHandling.CONTINUE_ON_FAILURE)){
KeywordUtil.markPassed(‘Cloud administrator is logged in’)
if (account != ‘Cloud administrator’) {
WebUI.click(findTestObject(switchAccountsArrow))
WebUI.click(findTestObject(switchAccountsMenuOption))
//switch accounts to integrator administrator
new clientAccount.ClientAccount().getRowColumnTable(account)
}
}