我使用Katalon Studio自动测试我的网页。我的问题是我不知道如何验证HTML元素是否具有非空值ex。 “”,“”。
有没有快速提示?
答案 0 :(得分:1)
如果要验证html元素是否具有特定值,可以使用:
WebUI.verifyEqual(yourElement.getAttribute('value'),'')
寻找元素:
def driver = DriverFactory.getWebDriver()
WebElement elem = driver.findElement(ByTagName.tagName('theElementYouWantToFind'))
因此,如果您希望测试用例在空值的情况下失败:
WebUI.verifyNotEqual(yourElement.getAttribute('value'),'')
答案 1 :(得分:1)
我的解决方案如下:
value = WebUI.getAttribute(findTestObject('Object/Repository/input_aaa'), 'value')
if (value == '') { throw new Exception('Empty value found')}