Hello,
i’m on UI VISION 7.0.11 When i run a macro sometimes script suddenly stop No error in log. The counter does not move and the commands after are not executed (I launch mulitple UI vision with multiple chrome instance in the same time)
Hello,
i’m on UI VISION 7.0.11 When i run a macro sometimes script suddenly stop No error in log. The counter does not move and the commands after are not executed (I launch mulitple UI vision with multiple chrome instance in the same time)
Do you use the XModules?
IMPORTANT CHANGE with Version 7 : If you use macros that run more than ~2 minutes you MUST install the XModules .
If you do not use the XModules then Chrome will stop the macro after ~2 minutes at a random point in the macro. No error message is displayed. The macro just stops. Please note that this behavior is not a bug of our software, but a “feature” of the new Manifest3 Chrome API.
Solution: Simply installing the XModules resolves this issue . The XModules app prevents Chrome from stopping UI.Vision macros
The other solution would be to use the Firefox version of the RPA software.
thank you for the REPLY. But xmodules is already installed and i cant use firefox because picture upload dont work
Hi, do you have a video of the issue? Some questions:
Hi,
Roughly how long does the macro run before it stops?
→ After 30 minutes
Do you use the latest Chrome? It must be a version > 100
→ Yes
Is this on Mac/Windows/Liux?
→ This is on windows
Do you have an email adress to send the video?
Thank you
Email: team AT ui.vision - just mention this forum post in your email.
Just linking these together; it sounds like the same issue: "Receiving end does not exist" - v7.0.9 - #8 by TheWhippinpost
If the OP thinks this is wrong I will remove this post.
My scripts often stop when opening a new tab seconds into the start of a script (Windows, chrome, XMODULES installed). No error messages or other indication.
@dbareis Interesting. Do you have a short test macro for us? If so, we can run it for hours here and debug when the issue happens.
DennisBareis-NormallyFails2ndLine=selectWindow.zip|attachment (347.8 KB)
@admin
I have attached a zip containing the files (it includes logs including those for other issues I have reported):
Line 1 parses the command line and does other setup, line 2 is where it hangs (opening the required URL). I tried it a few times this morning and it didn’t hang (it failed a few times with can’t connect to url?) I suspect varying cpu or other conditions will affect the timing of this issue.
Further to the original post, this happened several times again today; this time after the forced update to v.7.0.11.
It halted several times on the command: storeText
Any news about this issue? Its really blocking for us
yeah me too…there are 3 errors that I often get
i’m using chrome with 3 account, running 3 macros with different chrome account. running macro on laptop with 8GB RAM
Thanks, we are looking into it. The challenge is that it not always happens, which makes debugging slow.
Use case To reproduce:
-launch mulitple macro
-Run macro more than 3-4 Hours
I know that you mean. Difficult to debut if it does not happen all the time
But I just saw this still happening with version 7.0.14.
Script just stops for no reason with no error.
It’s not the entire kantu app that freezes as I Can close the window and restart it.
I will keep an eye on it if find a pattern.
Hi,
I’m still having the issue preventing me from running longer scripts.It seems to me it has to do with the number of “click” commands in your script. The text script I wrote below stops after around 100 iterations. (note: This seems to be a computer issue. I have installed kantu on a different machine and it the script below works fine on that one)
If you find anything, please let me know.
{
“Name”: “errorDisconnectTest”,
“CreationDate”: “2022-8-9”,
“Commands”: [
{
“Command”: “open”,
“Target”: “RPA Software Pricing”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “executeScript”,
“Target”: “return 0;”,
“Value”: “i”,
“Description”: “”
},
{
“Command”: “times”,
“Target”: “500”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “echo”,
“Target”: “i=${i}”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “click”,
“Target”: “xpath=//[@id="content download-content"]/div[2]/div[2]/table/tbody/tr/td",
“Value”: “”,
“Description”: “”
},
{
“Command”: “click”,
“Target”: "xpath=//[@id="content download-content"]/div[2]/div[2]/table/tbody/tr[2]/td”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “click”,
“Target”: “xpath=//[@id="content download-content"]/div[2]/div[2]/table/tbody/tr[3]/td",
“Value”: “”,
“Description”: “”
},
{
“Command”: “click”,
“Target”: "xpath=//[@id="content download-content"]/div[2]/div[2]/table/tbody/tr[4]/td”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “click”,
“Target”: “xpath=//*[@id="content download-content"]/div[2]/div[2]/table/tbody/tr[5]/td”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “executeScript”,
“Target”: “return ${i} + 1;”,
“Value”: “i”,
“Description”: “”
},
{
“Command”: “end”,
“Target”: “”,
“Value”: “”,
“Description”: “”
}
]
}