C# 白色框架自动化:如何检查页面是否已打开
我必须编写白色/C# 代码来检查单击按钮后是否打开确认页面。如果它没有打开,则意味着存在某种问题并且测试需要失败。 之后我需要使用该页面才能按下其上的另一个按钮。
有人知道如何使用white/c# 语法来做到这一点吗?
提前感谢
LE:这是我写的
public virtual void gotoSave(String Option)
{
btnSave.Click();
if (Option == "Save")
{
btnSave.Click();
}
}
,在测试中正在写,
depositPage.gotoSave();
其中depositPage是父页面
当单击保存时,我需要断言确认页面是否已打开,如果没有打开,则测试必须失败。
我知道如何使用 GetPage<>()
指令获取页面,但我不必这样做。
I have to write white/c# code to check if a confirmation page was opened after clicking a button. If it didn't open it means there was some sort of problem and the test needs to fail.
Afterwards i need to use that page in order to push another button on it.
Anyone know how to do that using white/c# syntax ?
Thanks in advance
LE: this is what i wrote
public virtual void gotoSave(String Option)
{
btnSave.Click();
if (Option == "Save")
{
btnSave.Click();
}
}
and in the Test in am writing
depositPage.gotoSave();
where depositPage is the Father page
When clicking on save I need to assert if a Confirmation Page has been opened, if not the test has to fail.
I know how to get pages using GetPage<>()
directive but I shouldn't have to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论