--
You received this message because you are subscribed to a topic in the Google Groups "robotframework-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/robotframework-users/VzgXWETCjks/unsubscribe.
To unsubscribe from this group and all its topics, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
Ugh
Update is explained in the user guide [1] and RIDE had an (beta) update which provides support for latest release.
-Tatu
Send from my mobile
[1] http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#standalone-jar-distribution
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
pip install robotframework==2.7.1 pip install --upgrade robotframework
Ugh
If you are using jar based Robot Framework, then yes. Although one has to remember that also the jar based Robot Framework is based on the Jython.
1) 2.9 is in alpha stage, so the jar file does not exist, yet.
2) When the 2.9 does exist (Python or Jython), new functionality is not available in the RIDE, without RIDE upgrade or some workarounds. Example the new dictionary feature, might require RIDE upgrade. Usually it is possible to get the new keywords visible by adjusting python path and installing Python based Robot Framework. One should add path where the Robot Framework libraries are to the python path and then one should see the new keywords in RIDE.
-Tatu
Send from my mobile
Ugh
If there are changes in the Robot Framework that would affect how RIDE should do stuff, then that change should be implemented to RIDE. Somebody should update the RIDE source code and make a new release. This is what I did mean by RIDE upgrade.
Also, currently RIDE contains copy of Robot Framework libraries, which will help RIDE to provide the IDE features. But when new version of Robot Framework is released, it usually brings new keywords and then RIDE internal version of the libraries comes obsolete. To overcome this problem, you have few choices.
1) You can install Python version of Robot Framework and add the Robot Framework libraries to the python_path. Then RIDE should pick the keywords from python_path (and not from the internal libraries).
2) With libdoc, you can generate the XML keyword documents and feed those to RIDE.
-Tatu
Send from my mobile
Thanks for the details.