我如何点击WatiN

时间:2013-07-29 13:42:16

标签: watin

我希望鼠标在包含onclick方法的行上移动

并点击它

我怎么能这样做?

<table width="100%" class="FormTable" border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="100" background="/images/tabimage/nrm_bg.gif" nowrap="" onmouseover="this.style.cursor = 'pointer';" onmouseout="this.style.cursor = 'default';" onclick="__doPostBack('HstUnitExchangeLetterSendEdit$tabControl1','1')">

<div class="Normal">
---text---main info

2 个答案:

答案 0 :(得分:0)

你可以找到像这样的表格单元格

var tableCell = browser.TableCell(Find.By("background", "/images/tabimage/nrm_bg.gif"));

//Then click on it
tableCell.Click();
//Wait for browser to load properly
browser.WaitForcomplete();

答案 1 :(得分:0)

这是什么? 检查了我之前给出的代码,并在你给出的html页面上正常工作

Browser browser = SetupBrowser();
browser.GoTo("file:///C:/Users/vbhadauria/Desktop/New%20folder/mail.html");
var tablecell = browser.TableCell(Find.By("background", "/images/tabimage/sel_bg.gif"));
tablecell.Click();
browser.WaitForComplete();

您也可以仅在本地计算机上查看它。