EDIT:
After some more testing/researching, I found out that Celerity does not support the bold element, but strong does, so I solved the cases which have strong, and changed the site so it simply does not use bold element :)
I also found that using documentation on github solved all the other cases, where I simply could write
puts browser.lis
This listed all the info I needed to proceed. Simply writing
browser.strong(:text, "rabbit").assert_exists
was enough to make my test.
As I am new to stackoverflow, I am not sure what to do with this question, so any editing is fine and guidance is taken with much appreciation.
[Question] I am currently testing a searchsite, and I wonder if I can find out that the text I searched on, has bold highlighthing when the search is done.
Example:
This is text in a paragraph, and <b>rabbit</b> shows up, and I need to test if rabbit has highlighted text in bold.
Since the bold element wont have any identifier, I am not quite sure how I can do this. Is it possible to search for text, and somehow find out if this text has an bold element surrounding it?
To make it more specific Is it possible, to locate some text, and ask what elements is surrounding it? I find "rabbit", and is it then possible to test if it has a certain div(with id/class) surrounding it?