我運行像下面不能使用華廷
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WatiN.Core;
namespace ConsoleApplication2
{
class Program
{
[STAThread]
static void Main(string[] args)
{
IE ie = new IE();
// point it to http://www.google.com
ie.GoTo("http://www.google.com");
// fill the search box
ie.TextField(Find.ByName("q")).TypeText("WatiN");
// performs click event
ie.Button(Find.ByValue("Google Search")).Click();
}
}
}
這是不工作很簡單的華廷控制檯應用程序。一個彈出窗口說,有一個文件丟失.exe
。我無法理解,因爲它只是一個控制檯應用程序。爲什麼我需要.exe
文件?
「visual studio無法開始調試,因爲調試目標D:\ .... \ consoleapplication1.exe丟失。請構建項目並重試或設置輸出路徑和AssemblyName屬性以指向正確的位置對於目標程序集「 –
非常感謝,它在將目標.net框架從4.0更改爲3.5之後起作用。這真是奇蹟 –