0

我的应用程序中有以下代码:

<div class="btn btn-mini disabled" title="<%= t('title.button.loan.borrow.disable.already_current') %>"><%= t('button.loan.borrow.after_confirmation') %></div>

我想在我的页面上测试这个按钮的存在,考虑到标题标签。我怎样才能做到这一点 ?

it { should have_css('.btn.disabled',
                     text: t('button.loan.borrow.after_confirmation'),
# (False line)       title: t('title.button.loan.borrow.disable.already_current')) }
4

1 回答 1

1

您应该使用属性选择器

it { should have_css(".btn.disabled[title='#{t('title.button.loan.borrow.disable.already_current')}']",
                 text: t('button.ownership.take.after_confirmation'),
于 2013-07-26T19:07:44.390 回答