Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 IDE 中计时执行 Selenium 脚本?我希望能够提供脚本的执行时间。
为了澄清,您只想看看运行测试需要多长时间?如果是这种情况,只需在脚本开头获取系统日期/时间,如下所示:
商店评估 | 新日期().getTime(); | 测试开始时间
然后在最后,再次获取系统日期/时间:
商店评估 | 新日期().gettime(); | 测试结束时间
然后从 TestEndTime 中减去 TestStartTime 以获得以毫秒为单位的差异。
不,没有办法设置 Selenium IDE 脚本的执行时间。必须手动启动脚本的执行。