显然这不能正常工作。我想使用 C# 而不是 AutoIt。什么可以使这项工作更好?
{
Process.Start("iexplore.exe");
System.Threading.Thread.Sleep(1000);
SendKeys.Send("{F6}" + "http://google.com/" + "{Enter}");
System.Threading.Thread.Sleep(1000);
int counter = 1;
while ( counter <= 10 )
SendKeys.Send("{RIGHT}" + "{SUBTRACT}");
counter = counter + 1;
}