I'm using KiXtart to input basic data into an Internet explorer window. Basically, it copies the data from a big excel list, and using sendkeys, it pastes the code into the Internet explorer window (using tab to get to the next field, etc).
Unfortunately (yes, theres always an "Unfortunately") the Internet Explorer window that I'm inputing data into has an SAP backend, so it takes time to move on to the next record.
Sendkeys does not "wait" for internet explorer to get to the next record before it tries to "Type" the data into the field, so in the end, I lose data.
From what I can think of, I have 2 solutions.
1) Is there a way to make Sendkeys WAIT until Internet explorer is ready before it proceeds?
2) Is there a way for me to put Sendkeys in a for loop, and the only time it exits is when internet explorer is ready? Thinking maybe I could do a copy and paste, and if the Copy is EMPTY, then internet explorer isn't ready, but if the Copy shows DATA, that means that Internet explorer is ready.

I either totally confused you, or you got what I'm trying to do. Any ideas?

Thanks so much for your help.