Sha256: 372cb0b509f75af979d81ec48f25ea6df73fecb3fd3ff882ec83950c33b2c6be
Contents?: true
Size: 454 Bytes
Versions: 38
Compression:
Stored size: 454 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("Rendering") 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
38 entries across 38 versions & 1 rubygems