我想自动化这种情况. UserA将项目分配给UserB,UserB会收到警报消息.为了做到这一点,我希望使用不同的帐户启动两个不同的浏览器来测试此交互.有可能做到这一点吗?如果有,怎么样?
@H_502_3@解决方法
看起来我的示例代码已经回答了这个问题:http://stackoverflow.com/questions/213430/selenium-rc-run-tests-in-multiple-browsers-automatically.
firefox = Selenium::SeleniumDriver.new("localhost",4444,'*firefox',"http://localhost:3000",10000) ie = Selenium::SeleniumDriver.new("localhost",'*iexpore',10000)
然后按照您喜欢的方式在不同的浏览器中运行命令.