如何使用硒选择数字元素?

时间:2018-04-04 15:31:52

标签: selenium

强大的textI有一个html表。我需要使用selenium获取td元素的数字" 10 强文本"

Html结构:

<td class="datepicker-day-number notranslate">
<td class="datepicker-day-number notranslate">
<button class="datepicker-cal-date" type="button" data-year="2018" data-month="3" data-day="10">10</button>
</td>

我尝试使用动态xpath:

//div[@class='datepicker-cal-month'][position()=1]//td 

请如何选择日期值10

1 个答案:

答案 0 :(得分:0)

试试这个xpath - //td[@class='datepicker-day-number notranslate']/button[@class='datepicker-cal-date'][.='10']