我试图让 Watin 在我的 SSIS 脚本任务中工作,通过在新线程中打开 IE 来做一些自动化,做一些事情,找到最终值并基本上在父线程中返回/设置该值。
所以我现在有这个:
public partial class TestWatin{
public void Main()
{
String finalValueFromWeb = "";
Thread runnerThread = new Thread(delegate() { getDAFValue(ref finalValueFromWeb ); });
runnerThread.ApartmentState = ApartmentState.STA;
runnerThread.Start();
runnerThread.Join();
MessageBox.Show(finalValueFromWeb);
//here i want to use the value of finalValueFromWeb to download a file
//but if i try to access finalValueFromWeb the process would fail.
}
//do the Watin stuff here
public void findHiddenURL(String refObject)
{
//setup page controls, press search, grab the value of "hiddenURL"
IE ie = new IE("some_webadress_to_go_to");
ie.Visible = false;
ie.SelectList("testID1").Option("Car").Select();
ie.SelectList("testID2").Option("JAP").Select();
ie.SelectList("testID3").Option("2012").Select();
ie.Button("testSearch").Click();
Link link = ie.Link("hiddenURL");
ie.Close();
//fails here?
refObject = link.Url;
}
}
我基本上想要的是为findHiddenURL()
我找到一个值,它是一个包含一些 CSV url 的字符串。然后我想使用该字符串下载 CSV 并处理它。
问题是当我尝试设置进程失败的finalValueFromWeb
内部值时。findHiddenURL()
异常消息说The Object Reference is not set to an instance of an object
有人可以告诉我应该如何解决这个问题吗?做这种事情的正确方法是什么?谢谢