Sha256: d97915e7ba22d8ae6b81d5fa74e91fafc040381567d0b62682ae51af18c0194c
Contents?: true
Size: 581 Bytes
Versions: 20
Compression:
Stored size: 581 Bytes
Contents
require 'watirspec_helper' describe 'Meta' do before :each do browser.goto(WatirSpec.url_for('forms_with_input_elements.html')) end describe '#exist?' do it 'returns true if the meta tag exists' do expect(browser.meta(http_equiv: 'Content-Type')).to exist end it 'returns the first meta if given no args' do expect(browser.meta).to exist end end describe 'content' do it 'returns the content attribute of the tag' do expect(browser.meta(http_equiv: 'Content-Type').content).to eq 'text/html; charset=utf-8' end end end
Version data entries
20 entries across 20 versions & 1 rubygems