如何为 iframe 内容编写 rspec 测试?我的 iframe 看起来像
<iframe src="/any url" name="Original">
...
<div>test </div>
</iframe>
在 iframe 无论内容之间,我想为该内容编写 rspec 测试用例。我能怎么做 ?
我如何使用 rspec 检查 iframe 中的“测试”?我在下面写但没有通过
page.should have_content("test")
错误如
Failure/Error: page.should have_content("test")
expected there to be content "test" in "Customize ....
我使用 capybara - 1.1.2 和 rspec - 2.11.0 和 rails 3.2.8