强大的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
答案 0 :(得分:0)
试试这个xpath - //td[@class='datepicker-day-number notranslate']/button[@class='datepicker-cal-date'][.='10']