public void verifyErrorMsgforInvalidUserTransPosting(
{
String errorMSG="You dont have permission to create transaction using this ID";
String errorMSGSYS=driver.findElement(By.xpath("html/div/.....").getText();
if(errorMSGSYS.equals(errorMSG))
{
System.out.println("System didnt allowed user to post the Transaction");
report.updateTestLog("Verify System is NOT allowing user to post transaction for an invalid user", "System didnt allowed user to post the Transaction", Status.SCREENSHOT);
}
else
{
System.out.println("System is allowing user to post the Transaction which is NOT expected behavior");
report.updateTestLog("Verify System is NOT allowing user to post transaction for an invalid user", "System is allowing user to post the Transaction which is NOT expected behavior", Status.FAIL);
}
}
上記のコードでは、場合(条件1)要素が発見されたときに動作します不一致取り扱いトライキャッチは
がある場合に条件1を満たす else文が動作するかどうかtry catchまたは他の方法を使って要素が見つからないときに、どうすればelseを処理することができますか?
ありがとうございました....これは私のために働いた...幸せ:) :) – Meghasri