How can we find x-path expression for class ng-binding?

93 Views Asked by At

How can we find x-path expression for class ng-binding? Here is the example:

<div class="product_card-img-info">
                                            <h5 ng-bind="pack.name" class="ng-binding">Freedom Kuota Harian 1GB / Hari (28GB)</h5>
                                        </div>
1

There are 1 best solutions below

0
Amol Patil On

Try Below xpath. It will select all elements having class 'ng-binding'

//*[contains(@class, 'ng-binding')]