I need to get the text (Bulk Template
) after the text()='Template: '
.
<div class="description secondary-text">
<strong data-issue-type-field="name">Template: </strong>
<span class="description secondary-text">Bulk Template</span>
<strong data-issue-type-field="name">Save Locally: </strong>
<span class="description secondary-text">c:\</span>
</div>
I've tried with this XPath expression:
//strong[@data-issue-type-field][text()='Template: ']/../span
but it retrieved two results.