selenium+Python获取弹出框内容的提醒时

使用webdriver.switch_to_alert().text()方法提示TypeError: 'unicode' object is not callable

这种情况是因为text()返回的是object类型,所以不能使用print进行打印

使用webdriver.switch_to_alert().text方法可以正常打印。。。

血淋淋的教训啊,警示新手