Slide 14
Slide 14 text
require "test_helper"
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
driven_by :selenium, using: :chrome, screen_size: [1400, 1400]
end
require "application_system_test_case"
class PostsTest < ApplicationSystemTestCase
test "visiting the index" do
visit posts_url
assert_selector "h1", text: "Post"
end
end