Sha256: f9c69604b040b4c0bf426553b5fc69576a9defc6938c93dcdc1f827090547bbc
Contents?: true
Size: 341 Bytes
Versions: 15
Compression:
Stored size: 341 Bytes
Contents
# frozen_string_literal: true require "katalyst/kpop/matchers/base" module Katalyst module Kpop module Matchers # @api private class CapybaraParser < Base def match(_, actual) @html = Nokogiri::HTML5.parse(actual.body) Capybara::Node::Simple.new(@html) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems