使用硒元素在chrome中打开应用程序的通知



我试图通过whatsapp使用https://api.whatsapp.com/send?phone=+number"但当我这样做的时候,我会弹出一个弹出窗口,要求打开whatsapp应用程序。当我使用selenium(python(时,我尝试使用驱动程序.switch_to_alert((.accept((但它说没有这样的警报,请帮助strongtext

也许它不是一个警报窗口,实际上是一个弹出窗口。为此,您需要切换驱动程序窗口:

#Switch to new window
self.driver.switch_to.window(self.driver.window_handles[1])
#Do stuff....
#Switch to old window
self.driver.switch_to.window(self.driver.window_handles[0])

我相信你也可以使用:

self.driver.switch_to_default_content()

如果已切换到子框架,则切换回原始窗口。

相关内容

  • 没有找到相关文章

最新更新