热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

将AssertNotSame转换为AssertThat

我希望对自动化测试有更直观的主张。我有一个断言来验证是否显示错误消息,这让

我希望对自动化测试有更直观的主张。我有一个断言来验证是否显示错误消息,这让您有点头疼。

Assert.assertNotSame((ExpectedConditions.textToBePresentInElementLocated(By.classname("notification-title"),"Error message")),"Error message");

关于如何进行转换的任何建议?


它最终变得比我想像的简单:

msg.author.send('Do you want red wine or white wine?');
msg.author.send(WineText)
.then((systemMsg) => {
systemMsg.channel.awaitMessages(respOnse=> response.content,{
max: 1,time: 5000,errors: ['time'],}).then((collected) => {
systemMsg.channel.send(`You want ${collected.first().content}. Do you prefer a verdejo or a rueda?`);
collected.channel.awaitMessages(respOnse=> response.content,{
max: 1,time: 10000
});
})then((collected2) => {
systemMsg.channel.send(`A ${collected2.first().content} it's. Do you want it at room temperature or chill? `);
}).catch((err) => {
return;
});

notSame and False使我感到困惑:D


推荐阅读
author-avatar
Kira玄玄
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有