Delete table in Confluence

I need to delete a table in a Confluence article. Here’s what I am trying

  1. Click on the table
  2. Click on the delete icon

Problem:
When I try to locate the selector of the delete icon, UiPath complains that the “selector is no longer valid”

@ui_auto

Is that a dynamix button like it comes and dispapeara before you identify?

If so you can try constructing the selector your self…see the tag of that button and use innertext and see if that works

<webctrl tag='Input' type='button' innertext = 'Delete' />

It might look something like this

Cheers

Yes, correct. A dynamic button that disappears before I identify. However that’s not a problem as I placed a delay before identification (F2).
So I am able to click to identify and then get the error message.

As you suggested I tried with constructing the selector but the click action did not work

With the above selector, “Element Exists” returns false even though visible on screen

@ui_auto

The above selector is not the complete selector check the innertext tag and other properties from inspect element developer tools panel…and then change the selector accordingly

Cheers