Comment by [email protected]:

Please help me with the following code..
You should make a python program with the following spec.

- full python, no use of python library except the one in the official python installation and Robotframework

- a main program (M1) start a thread T2 and then start a loop where it reads messages from T2

- the thread T2 start robotframework, to execute a robotframework test.

The test is a small sequence

print xx

pause

print xy

pause

print xz

pause

Each pause must generate an exchange between T2 and M1. The exchange is T2 send a message (with Queue python module) to M1. In M1 the reading message loop, prints a text, and send a message back to T2.

After having send a message to M1, T2 was waiting from the message back (on another Queue). When it gets the message, that is the end of the pause instruction implementation

The pause instruction is implemented in python

For more information:
http://code.google.com/p/robotframework/wiki/JavaIntegration

Reply via email to