Wondering is anybody can help me finding an xpath for the following element on a page
I am creating a test for the following question - I have been able to find an xpath for the Q1 is registered user portion but I would like to find an xpath which selects is reigstered user and also the Yes answer
Below is the HTML of the element
<div ng-show="resultsVm.eligibilityResults.questionAnswerPairs.length && doesBusinessExist" class="row show-grid" ng-repeat="eligibilityResult in resultsVm.eligibilityResults.questionAnswerPairs">
<div class="col-md-8">
<label>
Q1. Is Registered User?
</label>
</div>
<div class="col-md-2">
<span class="glyphicon glyphicon-ok" ng-class="{
'glyphicon-ok' : (eligibilityResult.answer.answerCode == 'Y')
, 'glyphicon-remove' : (eligibilityResult.answer.answerCode == 'N')
, 'glyphicon-flag' : (eligibilityResult.answer.answerCode == 'O')
}" aria-hidden="true"></span> Yes
</div>
</div>