Sha256: d5ba68e7048844ea591cbd36c84ad9aa25633a69153c5c8fdd611f23b2b4e627
Contents?: true
Size: 456 Bytes
Versions: 64
Compression:
Stored size: 456 Bytes
Contents
require_relative "../rails_helper" feature "Hello World", js: true do scenario "the hello world example works" do visit "/hello_world" expect(heading).to have_text("Hello World") expect(message).to have_text("Stranger") name_input.set("John Doe") expect(message).to have_text("John Doe") end end private def name_input page.first("input") end def message page.first(:css, "h3") end def heading page.first(:css, "h1") end
Version data entries
64 entries across 64 versions & 1 rubygems