摘要: def get_track(distance): # distance为传入的总距离 # 移动轨迹 track = [] # 当前位移 current = 0 # 减速阈值 mid = distance * 4 / 5 # 计算间隔 t = 0.2 # 初速度 v = 0 while current 阅读全文
posted @ 2019-12-12 16:03 北伽 阅读(226) 评论(0) 推荐(0) 编辑
摘要: from selenium.webdriver import ActionChainsfrom pynput.keyboard import Key, Controller as c2from pynput.mouse import Button, Controller as c1from sele 阅读全文
posted @ 2019-12-12 16:03 北伽 阅读(214) 评论(0) 推荐(0) 编辑