Esempio n. 1
0
def send_screenshot():
    # 截取当前窗口,并指定截图图片的保存位置
    path = "screen_img.png"
    # 刷新
    driver.refresh()
    # 全屏
    driver.maximize_window()
    sleep(2)
    driver.get_screenshot_as_file(path)
    print("保存截图")
    clip.setText(get_text())
    sent_msg()
    sleep(1)
    clip.setImage(path)
    sent_msg()
Esempio n. 2
0
 def cut( self ):
   clipboard.setText( self.consoleEntry.get() )
   self.consoleEntry.enterText('')
   self.focus()
Esempio n. 3
0
 def copy( self ):
   copy = self.consoleEntry.get()
   clipboard.setText( copy )
Esempio n. 4
0
import time
from datetime import datetime, timedelta

import pyautogui as gui

from clipboard import clipboard as clip


def sent_msg():
    # 从剪切板中获取内容
    gui.hotkey('ctrl', 'v')
    # 发送内容
    gui.hotkey('enter')


def get_text():
    date_format = "%Y-%m-%d %H:%M:%S"
    end = datetime.now()
    str_end = end.strftime(date_format)
    start = end - timedelta(minutes=30)
    str_start = start.strftime(date_format)
    result = "时间段:[%s - %s],系统正常" % (str_start, str_end)
    return result


time.sleep(10)
clip.setText("消息测试")
sent_msg()
clip.setImage("D:\\baidu_img.png")
sent_msg()