Hi,
I am trying to check if an <i></i> element exists on the web page.
I have a simple flow that checks for a UI element that is relatively deep in the web page.
table > tbody > tr > td > div > div > div > div:eq(1) > div > span > i
This returns false.
However, if I check for the other element (another <span> element) that is within the <span> element, it does find it. Like this:
table > tbody > tr > td > div > div > div > div:eq(1) > div > span > span
It seems it has an issue finding the <i> html element?