Sha256: 6153346005876e9e4e8a016fb6cb92a858b084a53d01029a82339d8a478fca35

Contents?: true

Size: 612 Bytes

Versions: 1

Compression:

Stored size: 612 Bytes

Contents

# frozen_string_literal: true

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

1 entries across 1 versions & 1 rubygems

Version Path
watir-7.2.0 spec/watirspec/elements/meta_spec.rb