Chi Pham
Chi Pham

Reputation: 11

Select Radio Button using Robot framework is not working

Select Radio Button    question2Answer    question2Answer

It is not correct, the system prompts the error message "Element not interactable: element has zero size"

enter image description here

Upvotes: 1

Views: 292

Answers (1)

pavelsaman
pavelsaman

Reputation: 8362

Most likely you need to wait until the element is ready. That translates into using e.g. keyword Wait Until Element Is Enabled like so:

Wait Until Element Is Enabled    name:question2Answer

Upvotes: 1

Related Questions