Robot Framework: How to find the version of the installed robot in my machine?

I have installed my robot in my local machine long time back and now I want to check the version on the installed Robot. I tried the command pybot --help and it gave me the result

'Version: 3.0 (Python 2.7.9 on win32)' 

Is my current robot version 3?

1

2 Answers

Yes. You can also execute robot --version.

See: Verifying Installation.

1

I assume you use pip as a python package manager, so just try:

pip show robotframework 

and you should get something like that:

Name: robotframework Version: 3.0.2 Summary: A generic test automation framework Home-page: Author: Robot Framework Developers Author-email: License: Apache License 2.0 Location: /Library/Python/2.7/site-packages Requires: 
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like