Reputation: 55
i want to find what libraries are installed in Robotframework. Maybe like with a pip command or something similar. Do you know any way for doing this? I already checked the documentation but could not find this. Many thanks !
Upvotes: 0
Views: 5233
Reputation: 385980
Unfortunately, there's no way to know all of the robot framework libraries that have been installed. All of the built-in libraries are easy to determine, but it's impossible to know what other libraries are there since they each get installed in their own folder.
Assuming that the libraries all follow the common pattern of "robotframework-_libraryname", you can grep the output of pip freeze
(eg: pip freeze | fgrep robotframework-
. Though, if you have a library that doesn't follow that convention then it may go undetected.
Upvotes: 5