C# 白色框架自动化:如何检查页面是否已打开

发布于 2024-12-26 17:48:08 字数 516 浏览 1 评论 0原文

我必须编写白色/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文