摘要:
from selenium import webdriver#引入driver=webdriver.Chrome()#用谷歌浏览器driver.get("https://www.baidu.com/")#打开百度driver.find_element_by_css_selector("[class= 阅读全文
摘要:
1、通过id定位 find_element_by_id() 例子 选择id from selenium import webdriver #引入 driver=webdriver.Chrome() #用谷歌浏览器 driver.get("https://www.baidu.com/") #打开百度 阅读全文
摘要:
1.变量与字符 #变量和字符 中文=1 print(1) x=3 y=6 x,y=y,x print(x,y)#6,3 #字符串 print("from selenium webdriver.common.action_chains import ActionChains\n" "from sele 阅读全文