I’m encountering a challenge with my UiPath automation involving Competitive Statements from a web portal. The workflow reads an Excel file correctly and opens each Competitive Statement as expected, but I run into an issue during interaction.
After I send the F5 key to select all (since Ctrl + A is unsupported), the workflow pauses briefly and then redirects back to the first Competitive Statement. Even though I send the Alt + F4 hotkey at the end to ensure no other Competitive Statement windows are open, the redirection issue still persists.
Please Note that i am also aware of the fact that F5 is used for page refresh but in this case the landing page uses F5 as select all function…so my entire goal was to visit each CS select all and then send a CNTRL + C hotkey…it worked for the first file but then for the second cs onwards the behaviour is as aforementioned.Unfortunately, I cannot upload any attachments as the credentials are confidential and belong to a private entrepreneurship.
If anyone has experienced a similar issue or has suggestions on how to prevent these unintended redirects, I would be greatly obliged if someone could come forward and help out. Your valuable feedback and assistance would be immensely appreciated.
I’m encountering a challenge with my UiPath automation involving Competitive Statements from a web portal. The workflow reads an Excel file correctly and opens each Competitive Statement as expected, but I run into an issue during interaction.
After I send the F5 key to select all (since Ctrl + A is unsupported), the workflow pauses briefly and then redirects back to the first Competitive Statement. Even though I send the Alt + F4 hotkey at the end to ensure no other Competitive Statement windows are open, the redirection issue still persists.
I have tried using Set Focus and Get Full Text, along with implementing Retry Find Element, If Element Exists, Waits, and various delays. I have also played with adding and removing these delays, but the issue remains consistent. Unfortunately, I cannot upload any attachments as the credentials are confidential and belong to a private entrepreneurship.
If anyone has experienced a similar issue or has suggestions on how to prevent these unintended redirects, I would be greatly obliged if someone could come forward and help out. Your valuable feedback and assistance would be immensely appreciated
As I know the F5 uses for refresh the page that may cause for your redirect from the page. If (Ctrl + A) doesn’t work is it possible you can scrape the entire content of the page using Extractaction method (if I correctly understand your issue)
If multiple competitive statement windows are open use Attach Window to ensure the correct window in focus (use dynamic selector If each competitive statement window has a unique title)
and If multiple windows open you can manage them using Parallel activities to close or switch between them systematically.
As I know the F5 uses for refresh the page that may cause for your redirect from the page. If (Ctrl + A) doesn’t work is it possible you can scrape the entire content of the page using Extractaction method (if I correctly understand your issue)
If multiple competitive statement windows are open use Attach Window to ensure the correct window in focus (use dynamic selector If each competitive statement window has a unique title)
and If multiple windows open you can manage them using Parallel activities to close or switch between them systematically.