- # https://pyperclip.readthedocs.io/en/latest/
- import pyperclip
- while True:
- # pyperclip.copy('Hello, world!')
- # pyperclip.paste()
- # pyperclip.waitForPaste()
- print(pyperclip.waitForNewPaste())
- # 获取要输入新的坐标,也可以通过autohotkey
- import time
- import pyautogui as pag
- import os
- try:
- while True:
- print("Press Ctrl-C to end")
- x, y = pag.position() # 返回鼠标的坐标
- posStr = "Position:" + str(x).rjust(4) + ',' + str(y).rjust(4)
- print(posStr) # 打印坐标
- time.sleep(0.2)
- os.system('cls') # 清楚屏幕
- except KeyboardInterrupt:
- print('end....')
- # 打印消息
- import pyautogui
- import time
- import pyperclip
- content = """
- 呼叫龙叔!
- 第二遍!
- 第三遍!
- 第四遍!
- 第五遍!
- """
- for line in list(content.split("\n"))*10:
- if line:
- pyautogui.click(433,605) #鼠标点击并定位到聊天窗口
- pyperclip.copy(line) #复制该行
- pyautogui.hotkey("ctrl","v") #粘贴,mac电脑则把ctrl换成command
- pyautogui.typewrite("\n") #发送
- time.sleep(5) #每次发完间隔5s
谷歌搜索 双引号——精确搜索 冒号后加文件类型——搜索特定类型的结果 关键词 后 site:**——搜索特定网站的关键词 +、-关键词——实现特定需求筛选 Google中/——快捷键入浏览·搜索框 关键词后..——搜索特定范围(地点)关键词 intitle:关键词——搜索特定标题 用 puppeteer 直接运行 chrome 爬 https://github.com/puppeteer/puppeteer Puppeteer 是一个 Node 库,它提供了一个高级 API 来通过 DevTools 协议 控制 Chrome 或 Chromium 。Puppeteer默认 无头 运行,但可以配置为运行完整(非无头)Chrome 或 Chromium。 了解如何为 Chrome 开发扩展程序 https://developer.chrome.com/docs/extensions/mv3/ 什么是Chrome插件 https://github.com/sxei/chrome-plugin-demo Google Workspace 状态信息中心 https://www.google.com/appsstatus#hl=zh&v=status 此页面提供属于“Google Workspace”的服务的状态信息 谷歌浏览器离线下载 https://support.google.com/chrome/answer/95346?co=GENIE.Platform%3DDesktop&hl=zh-Hans 企业版 https://cloud.google.com/chrome-enterprise/browser/download 也可以在谷歌浏览器 帮助中心 中搜索chrome https://www.google.com/intl/zh-CN/chrome/?standalone=1 chrome 打开新网页时不要覆盖 鼠标 中键(滚轮)点击超链接 ,或者右击超链接,选择新标签页打开, 还有点链接的同时按下 Ctrl 键也可以 谷歌在线翻译网页 http://translate.google.com/translate?u= http://www.dropitproject.com/index.php 打开chrome浏览器按 F6 ,等同于按 ...
评论
发表评论