have_field マッチャーを使うことで入力フィールドの存在確認や、入力値の確認ができる。

it { should have_field 'title' }
it { should have_field 'title', with: 'Rails4+RSpecでCapybara入門' }

ref. have_fieldマッチャで指定した入力フィールドを確認する | haracaneのブログ

関連記事