我有一些用 TruClient 脚本编写的自动化测试,我想验证应用程序 JS 控制台中打印的内容。
有没有办法从javascript访问它?
喜欢console.getText()
那种东西?
我想验证控制台中是否出现了一些信息。
例如,我该怎么做?
console.log("Hi");
//Now I want to check if it was printed correctly in the browser
if(console.getText() == "Hi")
{
//then test passed
}
我需要这个,因为我们正在构建新的浏览器。