I'm having an issue getting telerik to work with our system.
What we want to be able to do is have the automation run through a number of basic features of the system. The problem is that once the automation gets to a certain point, it hangs, waiting for “frame_5”. None of our iframes have IDs or names. We figured out that if we paused the test in the middle and gave the iframe that the automation is trying to use the attribute, “name=’frame_5’”, the automation could continue. We then wrote a JS script to go through and name all the iframes on the page between each step. We confirmed that the script does name the iframes correctly, yet the automation still hangs, waiting for “frame_5” even though the frame is named correctly.
Bottom line: Naming the iframes manually allowed the automation to complete. Naming them with a script did not. We’re not sure why it didn’t work. Perhaps a script isn't the best way to go?
What we want to be able to do is have the automation run through a number of basic features of the system. The problem is that once the automation gets to a certain point, it hangs, waiting for “frame_5”. None of our iframes have IDs or names. We figured out that if we paused the test in the middle and gave the iframe that the automation is trying to use the attribute, “name=’frame_5’”, the automation could continue. We then wrote a JS script to go through and name all the iframes on the page between each step. We confirmed that the script does name the iframes correctly, yet the automation still hangs, waiting for “frame_5” even though the frame is named correctly.
Bottom line: Naming the iframes manually allowed the automation to complete. Naming them with a script did not. We’re not sure why it didn’t work. Perhaps a script isn't the best way to go?