我正在为网络WhatsApp开发一个项目。示例代码如下。当我重定向网址时,链接大约需要7-8秒。我看到了一些示例应用程序,并提供了即时连接。我该怎么办?
private void Form1_Load(object sender, EventArgs e)
{
driveri.Navigate().GoToUrl("http://web.whatsapp.com");
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
driveri.Navigate().GoToUrl("https://web.whatsapp.com/send?phone=xxxxx&text=xxxxx");
Thread.Sleep(5000);
driveri.FindElement(By.ClassName("_35EW6")).Click();
driveri.Manage().Cookies.DeleteAllCookies();
}