python中如何將list轉換成字符串?
先在命令行中下載一個selenium庫:
python -m pip install selenium
然后使用selenium中的webdriver來進行模擬網頁點擊:
from selenium import webdriverfrom selenium.common.exceptions import TimeoutExceptionfrom selenium.webdriver.chrome.options import Optionsfrom selenium.webdriver.support.ui import Selectfrom selenium.webdriver.support.ui import WebDriverWaitsel=webdriver.Chrome() #也可換成Ie(),Firefox()等element=sel.find_element() #在網頁源碼中查找元素,具體可參考
http://www.aichengxu.com/python/11949.htm
element.click() #模擬對元素進行點擊如果你是Chrome用戶,需要手動下載一個chromedriver.exe,這里附上,把它放入系統Path路徑任意一個文件夾中即可