```rb expect(page).to have_no_css('input[placeholder="foo"]') ``` This is not caught but can be replaced to: ```rb expect(page).to have_no_field(placeholder: 'foo') ```