使用 Visual Studio 执行 WatiN 脚本的最佳方法

发布于 2024-10-08 19:02:35 字数 290 浏览 5 评论 0原文

我正在使用 Visual Studio 准备和执行 WatiN 脚本(使用 Visual Studio)(测试项目)。

我的方法是为每个步骤创建一个方法并执行,但现在我面临着排序这些方法的问题。

例如:

1)测试方法一:登录 2) 测试方法2:执行搜索 3)测试方法3:验证搜索 4)测试方法4:注销

但是在运行脚本时,方法以随机顺序执行,并且脚本失败。

谁能建议我使用 Visual Studio 执行 watiN 脚本的最佳方法是什么?

-- 此致, 库马尔。

I am using Visual Studio for preparing and exucute WatiN scripts using Visual Studio (Test Project).

My approach was to create one method of each step and execute, but now i am facing the problem in ordering these methods.

For example:

1) Test Method 1: To login
2) Test Mehod 2 : To perform a search
3) Test Method 3: To verify the search
4) Test method 4: Log out

But while running script, the methods are exucuted in random order and the scripts fails.

Can anyone kindly suggest me what is the best approiach for executing watiN scripts with Visual Studio?

--
Best Regards,
Kumar.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随遇而安 2024-10-15 19:02:35

单元测试应编写为独立执行,而不是依赖于其他测试。我知道这看起来有很多重复,但您需要能够自己运行测试。

你唯一能做的就是使用setup和teardown方法,它们在每次测试之前和之后执行,以简化一些设置。

Unit tests should be written to execute on their own and not be dependent on other tests. I know this seems like a lot of duplication but you need to be able to run a test on it's own.

The only thing you can do is to use the setup and teardown methods, which are executed before and after each test, in order to simplify some of the setup.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文