ChromeOptions options = new ChromeOptions();
driver.Navigate().GoToUrl("https://api.whatsapp.com/send/?phone=%2B0000000000000&text=I%27m+interested+in+your+car+for+sale&type=phone_number&app_absent=0");
Thread.Sleep(5000);
driver.SwitchTo().Alert().Dismiss();
我想解除WhatsApp警报,这要求我打开WhatsApp应用程序。以及我得到exeption,OpenQA.Selenium.NoAlertPresentException:no such alert (Session info: chrome=109.0.5414.120)
下面的图片显示了我的问题。
我想取消该通知,以便URL将我带到要发送消息的联系人
1条答案
按热度按时间jecbmhm31#
我认为这是与this相同的问题,所以按照这个答案,而不是模拟单击,只是将URL中的
api.whatsapp.com
替换为web.whatsapp.com
。