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.
我使用 capybara/rspec 匹配器进行了一些测试来检查内容或链接。无论如何,我只是将它们更改为小写并使用 CSS 将第一个字母大写。现在所有测试都失败了,因为原始 htmlpost虽然Post看起来像Post.
post
Post
应用css后是否可以忽略大小写或检查文本?
Capybara 支持正则表达式:
find('a', :text => /post/i).click
您可能需要使用click_link或click_on
click_link
click_on
参考谷歌网上论坛