mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-14 16:37:18 +00:00
Merge pull request #4 from avatao-content/networking_refactor
Comply new TFWServerConnector API
This commit is contained in:
commit
7905f51922
@ -17,19 +17,19 @@ def cenator(history):
|
||||
|
||||
class TestCommands(TerminalCommands):
|
||||
def command_selectdir(self, *args):
|
||||
TFWServerConnector().send_to_eventhandler('webide',
|
||||
{'data': {'command': 'selectdir',
|
||||
TFWServerConnector().send_to_eventhandler({'key': 'webide',
|
||||
'data': {'command': 'selectdir',
|
||||
'directory': args[0]}})
|
||||
|
||||
def command_trigger(self, *args):
|
||||
TFWServerConnector().send('selectdir_needs_no_key',
|
||||
{'trigger': args[0]})
|
||||
TFWServerConnector().send({'key': '',
|
||||
'trigger': args[0]})
|
||||
|
||||
def command_togglenext(self, *args):
|
||||
if not hasattr(self, 'togglenext_visible'):
|
||||
self.togglenext_visible = True
|
||||
TFWServerConnector().send('messagecontrol',
|
||||
{'data': {'command': 'showbutton',
|
||||
TFWServerConnector().send({'key': 'messagecontrol',
|
||||
'data': {'command': 'showbutton',
|
||||
'next_visibility': self.togglenext_visible}})
|
||||
self.togglenext_visible = not self.togglenext_visible
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user