所以我试图点击一个忘记密码的链接(这会导致一个模式弹出)并确认弹出链接,这样我就可以对发送的电子邮件进行测试。
我的代码如下所示:
page.find(:css, '#launch-modal-link').click # code fails on this line, after clicking the link
page.driver.browser.switch_to.alert.accept # does not get to this line of code.
尝试单击模式弹出窗口中的“确定”按钮时,我到底做错了什么?
我是否需要在链接周围添加一个 try catch 块(或在 Ruby 中调用的任何内容)