Capybara で OGP 設定ができているか確認するには以下のようにすると良さそう。
og_image_element = find('meta[property="og:image"]', visible: false) expect(og_image_element).to be_truthy # content の assertion expect(og_image_element[:content]).to match(%r{^http.*$})
Capybara で OGP 設定ができているか確認するには以下のようにすると良さそう。
og_image_element = find('meta[property="og:image"]', visible: false) expect(og_image_element).to be_truthy # content の assertion expect(og_image_element[:content]).to match(%r{^http.*$})