如何从一个通用脚本运行多个 watir 脚本
我有 3 个不同的 watir 脚本测试网站的不同功能。我希望能够运行一个脚本,将这些不同的脚本组合在一起并依次运行它们。有什么办法可以做到这一点吗?
I have 3 different watir scripts testing different functionality of a website. I want to be able to run one single script which brings these different scripts together and runs them one after another. Is there any way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的事情是明确要求一个文件中的所有文件,然后运行该文件。例如,您的 Watir 代码位于
file1.rb
、file2.rb
和file3.rb
中。创建包含以下内容的file.rb
:然后在命令行中执行
file.rb
:The simplest thing is to require all files explicitly in one file and then run that file. For example, you have Watir code in
file1.rb
,file2.rb
andfile3.rb
. Createfile.rb
that contains:and then in command line execute
file.rb
with: