Send keystrokes to a noVNC session.
This is most useful for appending to the commandline of an initial OS install in OpenStack
First, Boot from an install ISO. The following will connect via noVNC and append to the boot arguments
#!/usr/bin/env python3
from novncbot import NoVNCbot
console_url = "<noVNC URL>"
bot = NoVNCbot()
bot.connect(console_url)
# Disable consistent network device naming
bot.sendKeys(Keys.TAB)
bot.sendKeys(" biosdevname=0 net.ifnames=0")
bot.sendKeys(Keys.ENTER)
bot.disconnect()