在 IE 中运行 selenium 作为 RC,作为计划任务
我正在尝试使用 Selenium-RC 自动执行任务,用户无需登录。这是理想的场景:
作为计划任务运行并且用户未登录。 Selenium 将启动计划任务,打开 IE 并执行脚本。
我不确定这是否可行,但我需要在用户未登录的情况下模拟用户与 IE 的交互。执行此操作的最佳方法是什么?
IDEA:
我能否将Selenium放在虚拟机上,让虚拟机作为计划任务在物理机上运行;因此,当用户注销时,虚拟机仍然可以启动,并且selenium将在虚拟机上运行。
I'm trying to automate a task using Selenium-RC where the user doesn't have to be logged in. Here's the ideal scenario:
Running as a scheduled task and the user is not logged in.
Selenium will start at a scheduled task, open IE and go about the script.
I'm not sure this is possible, but I need to simulate user interactions with IE without the user being logged in. what would be the best way to do this?
IDEA:
would I able to put Selenium on a virtual machine, have the virtual machine run as a scheduled task on a physical machine; so when the user is logged out the virtual machine can still be started, and selenium will run on the virtual machine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 ant 构建,则可以创建一个批处理文件来调用构建。现在您可以安排批处理的执行。
我想你在使用 TestNG 框架和 java 时也可以这样做。因此,您创建一个批处理文件来使用 testng.xml 执行测试,然后安排它。
If you are using ant build, you could create a batch file to invoke the build. Now you could schedule the execution of batch.
I suppose you could same while using TestNG framework with java. So you create a batch file for executing test using testng.xml and then have it scheduled.