Can you help me come up with the correct xpath selector for this specific element? The element only has a unique href
. Is it possible to locate the element by searching for the text iphone X
within the href="#">iphone X
and also checking for its parent class class="card h-100"
? Once found, I need to click on the
<button class="btn btn-info">
which is another child of the same parent class.
<div class="card h-100">
<div class="card-body">
<h4 class="card-title">
<a href="#">iphone X</a>
</h4>
</div>
<div class="card-footer">
<button class="btn btn-info"></button>
</div>
</div>