上传文件
driver.get(‘https://tinypng.com/‘) #进入目标页面
driver.find_element_by_css_selector(‘.target .icon‘).click() #点击上传
time.sleep(1)
#开始上传文件,利用windows直接敲键盘的原理
import win32com.client #调用相应库(此处为window库)
shell=win32com.client.Dispatch("WScript.Shell") #调用shell的固定用法,不变照抄
shell.Sendkeys(r‘d:\baidu.png‘+‘\n‘) #模拟键盘输入,并按回车
模拟键盘输入
import win32api
import win32con
win32api.keybd_event(win32con.VK_NUMPAD0,0) #按数字0
win32api.keybd_event(win32con.VK_RETURE,0) #按回车键
win32api.keybd_event(win32con.VK_SPACE,0) #按空格
win32api.keybd_event(win32con.VK_ADD,0) #按+号