1. 程式人生 > >使用selenium+firefox做網站下載文件

使用selenium+firefox做網站下載文件

無法使用 session driver open 鏈接 pre man 依然 exce

環境:centos el7.x86_64系統+python2.7.5+selenium 3.13.0+geckodriver_0.21.0+firefox_60.1.0

問題:使用browser.execute_script("window.open(url)")
新鏈接無法使用新標簽窗口

解決:使用browser.execute_script("window.open(url,‘_self‘)") 在本頁面打開新鏈接
依然存在問題:SessionNotCreatedException: Message: Tried to run command without establishing a connection

                 改變js的方法:browser.execute_script("window.location.href=url")

使用selenium+firefox做網站下載文件