I want to select a button which contains a number greater than 1, so i have written the following:
//*mobile-list-outcome[1]/div/div[2][number(.) > 1]
My issue is that i want to avoid the first element, because it is irrelevant, my solution was that i tried putting index [1] at the end:
//*mobile-list-outcome[1]/div/div[2][number(.) > 1][1]
but all it did was that it decreased found elements to 0, any ideas ?
PC: I also tried putting and between the two conditions and it didn't do anything at all