模块化 Selenium RC 测试脚本的最佳实践
我正在 Visual Studio (C#) 中创建 Selenium RC 测试脚本。我是 努力重构测试;我所有的测试都在一个 文件。我将不胜感激任何意见和/或网站、书籍、 等等来了解模块化测试。
我必须在不同的站点上运行相同的测试(相同的应用程序,但 为不同的客户端和登录进行不同的配置),这是 95% 相同的。有人愿意提供一些好的例子或最好的例子吗 这样做的做法?
谢谢!
I am creating Selenium RC test scripts in Visual Studio (C#). I am
struggling with re-factoring the tests; all my tests are in a single
file. I would appreciate any input and/or pointers to websites, books,
etc. to learn about modularizing the tests.
I have to run the same tests on different sites (same application but
configured differently for different clients and logins) which are 95%
same. Would anybody like to provide some good examples or best
practices to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编写 Selenium 测试或任何 UI 测试的最佳实践是 页面对象模型< /a> 这是为每个页面创建一个对象的想法。这些对象中的每一个都对页面进行了抽象,因此当您编写测试时,它看起来并不像您一直在使用 Selenium。
因此,对于博客,您将执行类似的操作来为主页创建一个对象
,然后您将创建一个如下所示的测试
Best practise for writing Selenium tests or any UI tests is Page Object Model which is the idea that you create an Object for each of the pages. Each of these objects abstract the page so when you write a test it doesnt really look like you have been working with Selenium.
So for a blog you would do something like this to create an object for the home page
then you would create a test that looks like the following