I trying to figure out the issue with the attached Project. After running the Project it goes infinite loops and keeps on opening “SHA1” and “ACME System1” page.
After debugging the Project also I am unable to resolve the Problem.
Well it seems like the code is looking for a specific key in the config dictionary and it is not available in the config. That’s what the error say. Make sure you have specified all references to values in config accurately. In the code the reference of the key should be exactly the same as the text you have in the name column of the config file. Once those errors are fixed it should work fine. The other concern you have here on robot trying to execute the open application again and again is also because of the same error. It tries to resolve it by retrying the same set of tasks.
Thanks a ton for the Support… Yes, there was a Typo. Now its working fine.
Need one additional Support.
I got the below error as all Transactions were complete. Is this expected as part of the Assignment? Or do i need to add an exit condition?
Hi,
Yup, I was able to fix it and submit the assignment.
Issue was “In_transactionNumber < = YourDT.Rows.Count”.
After updating it to “In_transactionNumber < YourDT.Rows.Count” as suggested by you the issue was resolved.