XPath to search for <TD> tag with specific text in OnClick

I have the following HTML:

<td onclick="fbm_bet('53987976','1','6','')" class="bfbhlt">

Is it possible to use Xpath to find the desired number 53987976. Something similar to:

// td [@ contains = "53987988"]

Thanks a lot Stefan

+3
source share
1 answer
//td[contains(@onclick,'53987976')]
+4
source

Source: https://habr.com/ru/post/1764007/


All Articles