π Parent Note
π€ Situation
The find method automatically convert the '\n' to a space, so test will be false.
target = 'hello\nworld'
p target
#=> "hello\\nworld"
find('div.target').text
#=> "hello world"
expect(find('div.target').text).to eq target
#=> false π
π Solution
There is Capybara::RSpecMatchers#have_content
method.
- βοΈ It judges the page or the node has the text.
- β It ignores HTML tag, so if you want to test include HTML tag, you shouldn't use this.
expect(find('div.target')).to have_content(target)
Top comments (0)