1.

What are the test library APIs provided by the Robot Framework?

Answer»

The Robot Framework has three test library APIS

  • STATIC API: A module or a class containing methods map directly to the keyword names that take the same arguments as the implementing methods. 
  • Dynamic API: The names of the KEYWORDS to implement and how to implement is determined at runtime. 
  • Hybrid API: Combination of both the static and dynamic API. LIBRARIES are CLASSES containing the methods that tell them which keywords to implement, but those keywords must be available directly.


Discussion

No Comment Found