提高 Watin 的性能和速度
我们使用 Watin 进行验收测试,我们发现一旦网页的 HTML 源代码超过 100K,它就会变得非常慢。
我有一种感觉,一些速度问题来自于 HTML 表格的迭代。 我们的一些表有 50 - 60 行,每个表有 5 - 10 列,这使得 Watin 在搜索页面上的项目时非常慢。
有人对(例如)要使用的元素搜索方法的最佳重载有具体建议吗? 是否有特定的方法可以避免,因为它们真的很慢?
We're using Watin for acceptance tests and we find it gets mighty slow once we have Web pages that are more than 100K of HTML source.
I've a feeling that some of the speed issues come from iterating over HTML tables. Some of our tables have 50 - 60 rows, each with 5 - 10 columns, and this makes Watin quite slow when searching for items on the page.
Does anyone have specific recommendations on (for instance) the best overloads of the element search methods to use? Are there specific methods to avoid because they're really slow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了帮助加速表元素的处理,我所做的就是编写一个扩展方法,通过在表行上调用 NextSibling 来迭代表行,而不是调用可能很慢的 .TableRows 属性。
您需要做的就是获取对 Table 的引用,它将找到第一个 tr 并迭代它的所有同级。
What I have done to help speed up processing of Table elements is written a extension method to Iterate over table rows by calling NextSibling on a table row instead of calling the .TableRows property which can be slow.
All you need to do is get a reference to a Table and it will find the first tr and iterate over all of it's siblings.
您可以通过向 html 表格行或列元素添加 ID 来加快速度。 因此,在您的列较少的情况下,将 id 添加到至少列可能会更容易。 (特别是因为行数可能正在变化)。
因此,不要
在 html 中进行此更改
而不进行迭代
或
仅迭代一次
You can speed up a bit with adding IDs to html table rows or columns elements. So in your case where you have less columns it is probably easier to add ids to at least columns. (Specially because numbers of rows is probably changing).
So instead of
with this changes in html
without iteration
or
only one iteration
只是与 Watin 性能相关的一个小注释,我发现某些代码片段会大大减慢 watin 程序的速度(我不知道为什么)。 我在这里写过:
http://me-ol-blog.blogspot.co.il/2011/08/some-thoughts-about-watin-windows-7.html
Just a small note related to Watin performance, i found that certain code fragments slow down watin programs considerably (I don't know why). I wrote about it here:
http://me-ol-blog.blogspot.co.il/2011/08/some-thoughts-about-watin-windows-7.html