我如何使用硒在特定的地方掉落?

时间:2013-01-26 15:29:18

标签: xpath selenium fullcalendar

我正在尝试为拖放操作编写一个selenium测试。

我正在删除tr但是我需要指定行上的行踪,因为tr本身覆盖5个插槽(这是一个日历应用程序)但插槽不是td的所以我认为应用程序可能正在使用某种类型的x,y在tr。中协调。

具体来说,一路走来的是

<tr class="fc-slot15 fc-minor">
  <th class="fc-agenda-axis fc-widget-header"></th>
  <td class="fc-widget-content">
    <div style="position:relative"></div>
  </td>
</tr>

到目前为止,我所拥有的最佳xpath是xpath=(//table//tr[contains(@class,'fc-slot15')]//td),但这标识了整个tr。

视觉上看起来像这样:

enter image description here

我正在尝试将其用于完整日历,但如何放入指定的地方似乎已经足够了。

我可以用鼠标按下,鼠标移动(x,y),鼠标移动吗?

0 个答案:

没有答案