python中如何將list轉(zhuǎn)換成字符串?
先在命令行中下載一個(gè)selenium庫(kù):
python -m pip install selenium
然后使用selenium中的webdriver來(lái)進(jìn)行模擬網(wǎng)頁(yè)點(diǎn)擊:
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(),F(xiàn)irefox()等element=sel.find_element() #在網(wǎng)頁(yè)源碼中查找元素,具體可參考
http://www.aichengxu.com/python/11949.htm
element.click() #模擬對(duì)元素進(jìn)行點(diǎn)擊如果你是Chrome用戶,需要手動(dòng)下載一個(gè)chromedriver.exe,這里附上,把它放入系統(tǒng)Path路徑任意一個(gè)文件夾中即可