
I have a series of webpages with a different number of references to the same Class below and it can range from 2-6 times. I have work and been able to get other dynamic selectors working by modifying but cant figure this one out.
I would want to have the element reference class "title applicationTitle latestApplicationTitle" amd some how also just reference if contains "Utility" where shown below.
<p class="title applicationTitle latestApplicationTitle" style="display: table-cell;" tabindex="0">Application Update Utility Version 5.5</p>
Right now its finding a different reference to the Class and returning the wrong value e.g. Firmware Update Application vs Application Update Utility Version 5.5
Any help would be appreciated!
Hi @rso206
You can access the text using "contains".
Switch selector builder to the text editor an build custom selector, example:
html > body > div:eq(1) > form > div > span > p:contains("Utility")