以下のような非常に単純なwatinコンソールアプリケーションを実行します
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
ファイルが必要なのですか?