使用 Katalon Studio 捕捉 jQuery 的注意事项
Posted
技术标签:
【中文标题】使用 Katalon Studio 捕捉 jQuery 的注意事项【英文标题】:Catching jQuery noty with Katalon Studio 【发布时间】:2018-08-08 05:17:18 【问题描述】:我的 AUT 有一个 jQuery“通知”,在单击按钮后会出现。 (“Noty”是一个用于创建消息/通知的 jQuery 插件。)
消息会在屏幕上停留几秒钟,然后消失。恐怕对于 Katalon 的 'WebUI.verifyElementPresent()'
等方法来说太快了。还有其他方法可以用Katalon Studio
或Selenium
捕捉它吗?
【问题讨论】:
【参考方案1】:是的,有办法处理这种情况:
import org.openqa.selenium.support.ui.WebDriverWait as WebDriverWait
WebDriverWait wait = new WebDriverWait(driver, 20)
wait.until(ExpectedConditions.stalenessOf('your noty WebElement that you have to identify before') )
【讨论】:
【参考方案2】:我找到了一种捕获noty
消息的方法,如here 所述。
这是我的代码:
import ru.yandex.qatools.ashot.AShot
import ru.yandex.qatools.ashot.Screenshot
import ru.yandex.qatools.ashot.coordinates.*
import ru.yandex.qatools.ashot.cropper.*
public class ScreenshotHelper
public void takeWebElementScreenshot(TestObject object)
WebElement element = WebUiCommonHelper.findWebElement(object, 20)
WebDriver driver = DriverFactory.getWebDriver();
String fileName = new SimpleDateFormat("yyyyMMddHHmmSSS").format(new Date())
Screenshot screenshot = new AShot().takeScreenshot(driver, element)
try
if (DriverFactory.getExecutedBrowser().getName()=='HEADLESS_DRIVER')
ImageIO.write(screenshot.getImage(),'PNG', new File("C:/Users/path_to_working_directory/ErrorScreenshots/HeadlessElementScreenshot"+"_"+fileName+".png"))
else
ImageIO.write(screenshot.getImage(),'PNG', new File(System.getProperty("user.dir")+"/ErrorScreenshots/ElementScreenshot"+"_"+fileName+".png"))
catch (Exception e)
e.printStackTrace()
这个方法被同一个类的另一个方法调用:
public void catchNotyMessage()
TestObject noty_warning = new TestObject().addProperty('css', ConditionType.EQUALS, "div.noty_type_warning")
TestObject noty_error = new TestObject().addProperty('css', ConditionType.EQUALS, "div.noty_type_error")
if (WebUI.verifyElementPresent(noty_error, 1, FailureHandling.OPTIONAL))
this.takeWebElementScreenshot(noty_error)
else if (WebUI.verifyElementPresent(noty_warning, 1, FailureHandling.OPTIONAL))
this.takeWebElementScreenshot(noty_warning)
【讨论】:
以上是关于使用 Katalon Studio 捕捉 jQuery 的注意事项的主要内容,如果未能解决你的问题,请参考以下文章