Floella
Floella

Reputation: 1399

Robot Framework with Java (Hi-Fi library): can I use String keywords?

I'm using Robot Framework with Hi-Fi selenium-java implementation (https://github.com/Hi-Fi/robotframework-seleniumlibrary-java). But I need to use some of the keywords implemented in RF's "String" library (http://robotframework.org/robotframework/latest/libraries/String.html). Is there a way to do so in Java?

Otherwise: is there a way I can extend Hi-Fi's library and implement my own keywords?

Upvotes: 0

Views: 234

Answers (1)

A. Kootstra
A. Kootstra

Reputation: 6981

There are a number of standard modules that are available in Robot Framework and should be available in any implementation.

  1. BuiltIn
  2. Collections
  3. DateTime
  4. Dialogs
  5. OperatingSystem
  6. Process
  7. Remote
  8. Screenshot
  9. String
  10. Telnet
  11. XML

Upvotes: 0

Related Questions