当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
FR001.go 958 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"fmt"
"github.com/go-vgo/robotgo"
"tesou.io/platform/foot-parent/foot-robot/helper"
)
func main() {
robotgo.Sleep(1)
title := robotgo.GetTitle()
fmt.Println("title@@@ ", title)
util := &helper.RobotHelper{}
util.Tips()
}
func tes11t(){
robotgo.Sleep(1)
title := robotgo.GetTitle()
fmt.Println("title@@@ ", title)
for i := 0; i < 1; i++ {
robotgo.TypeStr("Hello World")
robotgo.TypeStr("测试")
// robotgo.TypeString("测试")
robotgo.TypeStr("山达尔星新星军团, galaxy. こんにちは世界.")
// ustr := uint32(robotgo.CharCodeAt("测试", 0))
// robotgo.UnicodeType(ustr)
//robotgo.KeyTap("enter","control")
robotgo.KeyTap("enter","control")
// robotgo.TypeString("en")
robotgo.KeyTap("i", "alt", "command")
arr := []string{"alt", "command"}
robotgo.KeyTap("i", arr)
robotgo.WriteAll("测试")
text, err := robotgo.ReadAll()
if err == nil {
fmt.Println(text)
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化