ubuntu-buildroot/support/testing/tests/package/sample_python_pexpect.py

9 lines
154 B
Python
Raw Normal View History

2024-04-01 15:19:46 +00:00
import pexpect
p = pexpect.spawn(["login"])
p.expect("login:")
p.sendline("wrong")
p.expect("Password:")
p.sendline("wrong")
p.expect("Login incorrect")