Is it possible to import only a specific set of keywords from a resource file.
Resource.robot
*** Keywords ***
Kw1
Do something
Kw2
Do something else
In the above example is it possible to import only Kw1 from Resource.robot?
The issue I'm facing is that I have 2 resource files that have certain keywords with the same name. And I need both the resource files for the test suite.
I'm aware that "resource_file_name.keyword_name" would work but it makes the test step not so easy to read.