Overload group

The private implementation of activity ‘1.20: Get attribute’ has the following validation error: The following overload groups are configured: Element, Selector. Only one overload group should have its arguments configured.

I am getting this validation error while using Get Attribute Activity .I have used Find Element “section” that stores value in a UIvariable and then i am using Get attribute to find the inner html and sends it to clipboard using hotkeys .

Please suggest why it is giving the above exception

Thanks

It’s not a bug.

Overload groups separate what parameters are needed for the activity to run.
In your scenario, you have provided both an UiElement and a Selector, which makes it unable to decide which one should it use.
Pick one and remove the other, error will go away. From your description you previously found the element, so remove selector from GetAttribute.

2 Likes

thanks resolved the error.