C# транспортир - поиск элемента в другом элементе
Я тестирую приложение AngularJS с HTML, которое выглядит примерно так:
<div class="ng-scope" ng-repeat="something in section.questions">
...
</div>
<div class="ng-scope" ng-repeat="something in section.questions">
...
</div>
<div class="ng-scope" ng-repeat="something in section.questions">
<div ng-switch="something.visible">
<div id="Ins_Othersumarea" class="content-detail-wrap ng-scope ng-isolate-scope" ng-switch-when="true" highlight="something.code == global.highlightedQuestionCode" highlightedcode="global.highlightedQuestionCode" ng-dblclick="logObject(something)">
<div ng-class="{divider: showDivider(section, $index)}">
<div ng-switch="something.type" class="content-detail-section">
<div class="ng-scope" ng-switch-when="TRIGGER_YES">
<ng-include class="ng-scope" src="getFragment('yes-no-fragment.html')" ng-if="!global.interview.isGroup" ng-init="baseQuestion = something">
<div class="row ng-scope">
<div class="col-sm-6" ng-switch="baseQuestion.answerValue == undefined && !global.readonly">
<div class="content-detail-right ng-scope" ng-switch-when="true">
<div class="row">
<div class="col-xs-6">
<button type="button" id="yes_Ins_Other sum area" class="btn-base-question-triggers ng-binding" ng-click="answerbaseQuestion(baseQuestion, true)" tabindex="1" setfocus="Ins_Other sum area">Yes</button>
</div>
<div class="col-xs-6">
<button type="button" id="no_Ins_Other sum area" class="btn-base-question-triggers ng-binding" ng-click="answerbaseQuestion(baseQuestion, false)" tabindex="1">No </button>
</div>
</div>
</div>
</div>
</div>
...
Я пытаюсь найти вложенные кнопки "Да / Нет" на основе текстового содержимого репитера Div.
Я могу найти правильный элемент ng-repeat с помощью -
var repeatElement = NgDriver.FindElements(NgBy.Repeater("something in section.questions")).First(x => x.Text.Contains("Some Text"));
Однако я не могу найти способ получить соответствующие кнопки Да / Нет..
Я старался -
repeatElement.FindElement(By.XPath("//button[contains(.,'Yes')]"))
Но это возвращает первую кнопку "Да" на странице (а не внутри элемента ng-repeat Div, как я ожидал).
- Зачем??
- Как я могу выполнить то, что я пытаюсь сделать?
2 ответа
Решение
repeatElement.FindElement(By.XPath("//button[contains(.,'Yes')]"))
Это почти правильно, за исключением того, что выражение XPath должно начинаться с точки, чтобы быть context/repeatElement
конкретный:
repeatElement.FindElement(By.XPath(".//button[contains(.,'Yes')]"))
var yesButton = repeatElement.FindElement(By.Id("yes_Ins_Other"));
или же
var yesButton = repeatElement.FindElements(By.Tag("button")).FirstOrDefault(x => x.GetAttribute("id") == "yes_Ins_Other");