我正在使用WatiN(大约3000)迭代一个非常大的div列表,我收到了错误:
A first chance exception of type 'System.OutOfMemoryException' occurred in WatiN.Core.dll
System.OutOfMemoryException: Insufficient memory to continue the execution of the program.
at WatiN.Core.UtilityClasses.UtilityClass.TryFuncFailOver[T](DoFunc`1 func, Int32 numberOfRetries, Int32 sleepTime)
at WatiN.Core.Native.InternetExplorer.IEElement.GetWithFailOver[T](DoFunc`1 func)
at WatiN.Core.Native.InternetExplorer.IEElement.GetAttributeValue(String attributeName)
at WatiN.Core.Element.GetAttributeValueImpl(String attributeName)
at WatiN.Core.Component.GetAttributeValue(String attributeName)
at WatiN.Core.Element.get_OuterHtml()
at WatiN.Core.Document.get_Html()
点击div然后获取浏览器的html。
有谁知道如何解决内存问题?我希望我可以使用不同的功能或以某种方式拆分页面。也许我需要使用WatiN以外的东西
代码是:
foreach (Div d in browser.Divs)
{
try
{
d.Click(); // click div
System.Threading.Thread.Sleep(250); //wait for new data to load
string url = "";
if (browser.Html.Contains("http://www.google.com/url?")) // check if an external link exists on the page - this causes the memory exception
{
感谢您的帮助
克里斯
答案 0 :(得分:0)
首先不要在等待页面时用户线程休眠,你有浏览器.WaitForComplete()
如果您正在查看该链接将您带到特定页面,您可以直接检查浏览器URL,如下所示:browser.Url.Contains(“address”)...
答案 1 :(得分:0)
在这种情况下,Internet Explorer出现问题,因为它使用的内存量超过1GB,并且可能会在某处达到32位.net对象限制。
在我的情况下,在64位系统上运行"修复" (或者说,延迟)这个问题。