Examples from the man page:
tktest::init MyApp # Press button labeled "Run" tktest::press Run # Select Menu entry "Exit" in menu "File" tktest::menu File Exit # Right click mouse over the listbox's second element and select # the Delete entry from the popup menu. set w [tktest::widget -class Listbox] set c [tktest::coord $w bbox 1] tktest::mouse right $c tktest::menu "Delete" tktest::key Escape # Read the text from the first Label in the window set t [tktest::widget -class Label -pos 0 -eval "cget -text"] # Type an A at the end of the entry tktest::cmd focus [tktest::widget -class Entry] tktest::key End tktest::key A