Sha256: f85e71aa0c7d4bbcd9100bc1cca69a23e45879bbe289f9ab8afd95c2a014c14d
Contents?: true
Size: 450 Bytes
Versions: 19
Compression:
Stored size: 450 Bytes
Contents
require "watirspec_helper" describe "Attributes" do before :each do browser.goto(WatirSpec.url_for("forms_with_input_elements.html")) end it "finds tab index" do expect(browser.checkbox(tabindex: "4").tabindex).to eq 4 end it "finds element with boolean" do expect(browser.checkbox(tabindex: false).id).to eq 'toggle_button_checkbox' expect(browser.checkbox(tabindex: true).id).to eq 'new_user_interests_books' end end
Version data entries
19 entries across 19 versions & 1 rubygems