如何从一个通用脚本运行多个 watir 脚本

发布于 2024-11-26 16:30:39 字数 82 浏览 2 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(1

゛清羽墨安 2024-12-03 16:30:39

最简单的事情是明确要求一个文件中的所有文件,然后运行该文件。例如,您的 Watir 代码位于 file1.rbfile2.rbfile3.rb 中。创建包含以下内容的 file.rb

require "file1"
require "file2"
require "file3"

然后在命令行中执行 file.rb

ruby 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 and file3.rb. Create file.rb that contains:

require "file1"
require "file2"
require "file3"

and then in command line execute file.rb with:

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