Find ID or Name in Browser by Partial

I have a webpage where the ID and names are made up with a static element and a dynamic element representing an internal ID. We are not exposed to the internal ID so cannot construct the find in full. Is there a way to do a find element by partial as this is the only line on the page?

Below is the example element…

<input type="submit" onclick="this.disabled='disabled'; this.form.submit();" alt="Service Completed" value="Complete" class="ffbtn acceptBtn" id="ACCEPT:37878581" name="ACCEPT:37878581">

Dear David,

Welcome to the Community and thank you for sharing your question and challenge here.

There are a couple of ways you could approach this, but I think the most straightforward way would be to identify your element in some other way, for example by using the “Find element by attribute and value” activity.

I think to identify your element, you could configure the activity as such:

Hope this helps David.

Kind regards,
Koen

Thanks that does help and gets me round the issue in question for this example.