The API | check | is text present | £100 | true | is a very generic
API in that it works if it finds any occurence of the test ANYWHERE on
the page
If you know exactly where the text is located then you need to look at
using XPath to locate the element with the text in it
lets say you have some <div> elements on the page somewhere each with
the text in it. You could use
| check | is element present | xpath=//div[text()='£100'] | true |
You would obviously have to make each of the xpath statements unique
to find the 4 but this is one way
If each of the divs, had a different id or class, you could use
| check | text of element | xpath=//div[@id='first'] | £100 |
| check | text of element | xpath=//div[@id='second'] | £100 |
| check | text of element | xpath=//div[@id='third'] | £100 |
The key here is that XPath or Css Locators can always be used to
unique identify an element on the page