'Testcafe: finding elements with mutiple conditions
I'm trying to create a selector that matches "several" items in my dom.
Dom may look like this:
<a class="email-item">
<span class="title">Newsletter</span>
<span class="from">[email protected]</span>
</a>
<a class="email-item">
<span class="title">Newsletter</span>
<span class="from">[email protected]</span>
</a>
<a class="email-item">
<span class="title">Newsletter</span>
<span class="from">[email protected]</span>
</a>
I try to find all a-elements that do have the title "Newsletter" as innerText AND are from "[email protected]"
so kind of a combo-selector...
Thanks for your help! Ray
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
