Sha256: bc4b648dc876d48a6c22533d91a669d6c377a681d3c0476f8bf2144f8d9ba5e4

Contents?: true

Size: 1.71 KB

Versions: 1

Compression:

Stored size: 1.71 KB

Contents

# frozen_string_literal: true

require_relative '../unit_helper'

describe Watir::Locators::Anchor::SelectorBuilder do
  include LocatorSpecHelper

  let(:selector_builder) { described_class.new(attributes, query_scope) }

  describe '#build' do
    it 'without only tag name' do
      selector = {tag_name: 'a'}
      built = {xpath: ".//*[local-name()='a']"}

      expect(selector_builder.build(selector)).to eq built
    end

    it 'converts visible_text String to link_text' do
      selector = {tag_name: 'a', visible_text: 'Foo'}
      built = {link_text: 'Foo'}

      expect(selector_builder.build(selector)).to eq built
    end

    it 'converts visible_text Regexp to partial_link_text' do
      selector = {tag_name: 'a', visible_text: /Foo/}
      built = {partial_link_text: 'Foo'}

      expect(selector_builder.build(selector)).to eq built
    end

    it 'does not convert visible_text with casefold Regexp to partial_link_text' do
      selector = {tag_name: 'a', visible_text: /partial text/i}
      built = {xpath: ".//*[local-name()='a']", visible_text: /partial text/i}

      expect(selector_builder.build(selector)).to eq built
    end

    it 'does not convert :visible_text with String and other locators' do
      selector = {tag_name: 'a', visible_text: 'Foo', id: 'Foo'}
      built = {xpath: ".//*[local-name()='a'][@id='Foo']", visible_text: 'Foo'}

      expect(selector_builder.build(selector)).to eq built
    end

    it 'does not convert :visible_text with Regexp and other locators' do
      selector = {tag_name: 'a', visible_text: /Foo/, id: 'Foo'}
      built = {xpath: ".//*[local-name()='a'][@id='Foo']", visible_text: /Foo/}

      expect(selector_builder.build(selector)).to eq built
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-7.2.0 spec/unit/selector_builder/anchor_spec.rb