我的问题很简单,但我无法弄清楚为什么它在 if/loop 中不起作用。这里有些例子:
工作一:
private void button1_Click(object sender, EventArgs e)
{
webBrowser1.Document.GetElementById("login").SetAttribute("value", "something");
webBrowser1.Document.GetElementById("password").SetAttribute("value", "something");
}
非工作一:
if (webBrowser1.IsBusy == false)
{
webBrowser1.Document.GetElementById("login").SetAttribute("value", "something");
webBrowser1.Document.GetElementById("password").SetAttribute("value", "something");
}
无论“if”语句是什么,它都不起作用。还尝试使用“for”,也尝试将其从“for”循环中取出,我仍然收到此错误:“对象引用未设置为对象的实例。”