Watin:从表中获取行数

发布于 2024-10-08 14:47:24 字数 749 浏览 1 评论 0原文

您好,我正在尝试使用 Watin 从表中获取行数,即

1.获取表(完成) 2.统计表中的行数(未完成) 3.比较计数(已经有了一个想法)

我如何使用 watin 从表中获取行数?有什么想法吗?有人能给我指出正确的方向

嗨伙计们;感谢您的帮助,我在这里遇到了另一个障碍我'我使用这样的东西

int CountNumberOfRows = this.elements.JobListingGrid.OwnTableRows
                                 .Skip(1)
                                 .Where(r => !r.ClassName.Contains("rowHidden"))
                                 .Count();

好的,我现在可以得到计数“21”:),我的问题是页面使用相同的控件,并且如果我单击 Activelink,每个页面的行数是相同的行数是 21,如果我单击 Pendinglink,尽管行数被隐藏,它仍然是 21。我需要区分行数,因为这是我执行此操作的唯一方法我

 if (CountNumberOfRows != 0)
 {
  this.Elements.ActiveLink.Click();
 }
 else
 {
   this.Elements.PendingLink.Click();
 }

的想法可能吗?还是我需要查看以另一种方式

Hi i'm trying to get a row count from a table using Watin ie

1.Get the table (done)
2.Count the rows in the table (not done)
3.Compare the count (already have an idea)

How do i get the row count from the table,using watin?Any ideas?Can someone point me to the right direction

Hi Guys;thanks for helping,i hit another roadblock here i'm using something like this

int CountNumberOfRows = this.elements.JobListingGrid.OwnTableRows
                                 .Skip(1)
                                 .Where(r => !r.ClassName.Contains("rowHidden"))
                                 .Count();

Ok i'm able to get the count now its '21' :),My problem is the page is using the same control,and the number of row for each page is the same if i click the Activelink the rows is 21 and if i click on Pendinglink although the rows are hidden it will still be 21.I need to differentiate the number of rows because that is the only way for me to do this

 if (CountNumberOfRows != 0)
 {
  this.Elements.ActiveLink.Click();
 }
 else
 {
   this.Elements.PendingLink.Click();
 }

Is my idea possible?Or do i need to look at another way

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆光飞翔i 2024-10-15 14:47:24

如果您已有该表,则 TableRows 集合会为您提供行数:

table.TableRows.Count;

If you already have the table then the TableRows collection gives you the number of rows:

table.TableRows.Count;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文