Computer Science, asked by mayurys604, 1 year ago

How to create a keyword in robot framework using keyword decorator python ?

Answers

Answered by Ssatyam9935
0
Robot Framework itself is written with Python_ and naturally test
libraries extending it can be implemented using the same language. When running the framework on Jython_, libraries can also be implemented using Java_. Pure Python code works both on Python and Jython, assuming that it does not use syntax or modules that are not available on Jython. When using Python, it is also possible to implement libraries with C using Python C API, although it is often easier to interact with C code from Python libraries using ctypes module.

Libraries implemented using these natively supported languages can also act as wrappers to functionality implemented using other programming languages. A good example of this approach is the `Remote library`_, and another widely used approaches is running external scripts or tools as separate processes.
Similar questions