如何在 Selenium RC 的单个实例中运行所有类?
我在 C# 中使用 Selenium RC。我有 .cs 文件列表,有没有办法在不打开多个实例的情况下执行所有文件。
I am using Selenium RC in C#. I have list of .cs files, Is there any way to execute all the files without opening multiple instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要对每个 *.cs 文件使用相同的会话,请在启动 Selenium 时使用
[TestFixtureSetUp]
属性而不是[SetUp]
属性。这将在任何测试之前在文件的开头运行,然后将其杀死,将其放入您的
[TestFixtureTearDown]
然后您可以将测试从每个测试的单个文件移动到每个测试 1 个文件您想要测试的一些功能。
To use the same session per *.cs file use the
[TestFixtureSetUp]
attribute instead of the[SetUp]
attribute when starting Selenium.This will run at the beginning of the File before any of the tests and then to kill it off put it in your
[TestFixtureTearDown]
And then you can move tests from their individual files per test to 1 file per bit of functionality that you wish to test.