Category "robot"

How to call class method in robot framework?

I am getting error "No keyword with name 'addition' found." py file class A: def addition(self,a,b): print(a+b) obj=A() obj.addition(4,5) robot code

How can I click on each link on a page and then return to the initial page using Robot Framework?

I have this link : https://pubmed.ncbi.nlm.nih.gov/?term=Fleiss+B and I want to click on each link, extract some information and then comeback to the initial pa