标签: ruby-on-rails testing selenium capybara
我的命名路线计算为www.example.com/<route>。为什么要使用www.example.com域名?这打破了打开浏览器的硒测试,因为浏览器正在尝试访问www.example.com/sports,这显然不存在。
www.example.com/<route>
www.example.com
如果我使用路径而不是网址(sports_path而不是sports_url),那么事情就可以了。只有我命名的url路由才会投入www.example.com域。
sports_path
sports_url