Processes in Microsoft 365 for setting up Office apps, redeeming product keys, and activating licenses.
The error indicates that the web automation action in the desktop flow cannot find the web element that matches the stored CSS selector:
> body > div > div > div > div > iframe[Src="/webui/servlet/standalone/../fslogin?applicationId=51226&standalone=true&"] label[Id="node-tfacr2411m000-label"]
This typically happens when the page structure or attributes have changed since the element was first captured.
To resolve the issue:
- Reopen the target web page and navigate to the exact state where the element should be available.
- In Power Automate for desktop, open the desktop flow and locate the failing web action (for example, Click link / Click element / Press button) that uses this selector.
- Use the selector editor to repair the selector:
- Select the UI element used by the action.
- Choose the Repair option and recapture the element on the live page.
- Review the proposed selector changes and save them.
- Then use Test in the selector editor to confirm that the element is found successfully.
If the page is highly dynamic (for example, IDs or structure change frequently), adjust the selector to be more robust:
- Prefer stable attributes (such as consistent classes, text, or higher‑level containers) over volatile IDs.
- Avoid over‑specific full DOM paths when possible.
If the failure occurs only in unattended runs, also verify that the unattended environment renders the page the same way as during design (same screen resolution, same browser, same zoom level), because layout changes can affect which elements are present or visible.
References: