Last Updated: Oct 5, 2021
I am unable to start the recording in the Web UI node, get the error message as "Jiffy Extension in Google Chrome is not enabled". Perform the following steps to enable Jiffy extension.
While executing Web UI node that has web table extraction, I get the error “Element Not Found“. This error can occur due to multiple reasons:
While executing Web UI node that has web table extraction, I get the error “List index out of range”. This error can occur due to multiple reasons:
During execution of Web UI node with Image/Text Recording, I get an error “Task cannot be executed. Current screen width: 1536 or Height 864 is different from the Learned Width 1920 or Height 1080”. This error occurs when the resolution of your machine is different from the resolution while the elements were recorded. Check if the layout is set to 100% in the display settings. (Refer to the following snapshot). Check the Display resolution is the same as mentioned in the error for the learned element Width 1920 or Height 1080. If not change the values. If the error persists, change the resolution to 100% and re-record the element.
When I try to record the data from Web UI node row-wise, I am getting the warning “Elements might not be correlated”. This error occurs when after recording the first-row element of the first column, you record the row element of the second column directly. For Web Table recording, for the first column, you need to select two row elements. Ensure the first column data is displayed on the Table learning screen, then record the second column. Click here to know more about Web Table recording.
I am using Iterations in WebUI node using the Iterate-on option. It gives an error “Not a table object". Iterate-on requires a Table type variable as an input. This error occurs if the variable is not of type Table. By default, when the Data table is mapped from preceding node it gets mapped as a text type variable. In the Variable tab, change it to Table type and select suitable Table Definition and rerun the task.
I have an issue with the recording of the UI node. The issue is when I type into input element of these websites and the element searched is not first in the list, for example, while recording the following element: For such cases where there can be multiple search results, provide the complete name as follows.
Google Chrome tab is closing unexpectedly while executing the task execution with WebUI node. The Properties Close Application, Close Application on Error are available for Web UI node. If they are toggled ON, the chrome browser will close after execution or on error. Toggle them to OFF if you want the browser to remain open.
I recorded a Dropdown element, but in Actions, I am not finding 'Select' to pass the values. How do I automate in such scenarios? If the dropdown element recorded is of type Select:
dr=self.engine.get_driver() xpath="{ElementXpath}" ele=dr.find_elements_by_xpath(xpath) return ele[0].click()
The script works only for elements whose XPath remains unchanged.
When executing Web UI node, if you get an error “Chrome not reachable…..” or task execution hangs or Chrome browser does not open. Change the properties of below Chrome Flags
In UI automation, I am unable to perform control-based familiarization for an element. I am unable to pass actions to the elements. You can perform the required actions on these elements using the user defined function Send_Keys. Create a User Defined function Send_Keys of type UI with the following inputs:
import clr clr.AddReference("System.Windows.Forms") from System.Windows.Forms import SendKeys import time time.sleep(1) SendKeys.SendWait(input)
The variable is not listed for Iterate on option, although the variable is mapped from the preceding node. This occurs when variables Type is not changed to Table. Iterate on requires a Table type variable as an input. By default, when the Datatable is mapped from preceding node it gets mapped as a Text type variable.In the Variable tab, change it to Table type and select suitable Table Definition.
During UI automation, when I try to upload a file using file upload button on a website, the task execution hangs. This occurs when Allow access to file URLs option is not enabled for the chrome extension. Enable the same to use file upload in chrome mode.
While executing the WebUI node, I am getting the error as "Process exited with an error: 1 (Exit value: 1) [Error: importerror: dll load failed: %1 is not a valid win32 application.;] ".
WebUI node fails with error message "stale element reference element is not attached to the page document…" error.
This error occurs when the Chrome driver version does not match with the version of Chrome browser.
Unable to record elements for automation. Getting a warning “UILearn is not installed…..” This error occurs if all Jiffy files are not installed properly due to anti-virus blocking the installation. Check if wpfbase.exe is present in C:\jiffyservice\Learn, If not present, place the file there and restart the recording. You can also stop the antivirus and reinstall Jiffy Client.
In input fields if I provide " ", it is changed to "& quot;", for example, “Mobile” is converted as "& quot;"Mobile"& quot;". I am unable to perform web automation due to this. Add a function to convert the entire input including quotes to a string, for example, return str(input_text) and use the converted string as input for the web automation.
When executing WebUI node, getting "Python path is missing" error. This can occur when there are multiple versions of Python installed in the system. Uninstall all the already existing versions of Python from the system, remove the path from environment variables and uninstall Jiffy client. Restart the machine and reinstall Jiffy client.
When executing WebUI node, getting "Chrome Extension is not found or disabled" error. In the Web UI Configurations, use Chrome Deprecated mode for Browser.
Even though Run even if locked option enabled in advanced properties of the Web UI node, the task is failing if the machine is locked. The property Run even if locked fails if the WEB UI node has the Image or text-based elements in it. To overcome this, use the Login node in the task so that the bot logs in to the machine and executes the task successfully.
There is a UI element that appears only after scrolling down the webpage. During the execution, the bot is unable to scroll down to the check box and throws up an error "Element not found error". Jiffy scrolls down to the element automatically. But if it throws the error “Element not found error”, use the following selenium expression to scroll down to the element in the dynamic script of the UI Control.
x = ‘xpath of the element' driver=self.engine.get_driver() target=driver.find_element_by_xpath(x) driver.execute_script('arguments[0].scrollIntoView(true);', target) return target