在WatiN中,我如何等待回发完成。

例如:

// Postback response modifies update panel elsewhere on page
browser.Text("id").TypeText("asd");

// WatiN doesn't wait until postback is completed (what code should I replace it with?).
browser.WaitUntilComplete();

最佳答案

WaitUntilComplete无法识别ajax调用。请参阅本文(在WaitForAsyncPostBackToComplete上搜索)以了解如何注入(inject)一些代码以使其同样起作用:WatiN, Ajax and some Extension Methods

HTH,
耶罗恩

关于asp.net - 在WatiN中如何等待回发完成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1979610/

10-11 01:52