Fix: Enter not being pressed for newlines

This commit is contained in:
kayos@tcp.direct 2021-12-16 09:48:33 -08:00
parent d096438b74
commit 565f782ccf

View File

@ -70,7 +70,9 @@ func main() {
println("Sending keys!")
for _, line := range textlines {
k.Type(line)
time.Sleep(15 * time.Millisecond)
k.Enter()
time.Sleep(15 * time.Millisecond)
}
println("\ndone!")
}