Sometimes when you assign textBox.Text = "abcdef"and then do something else - only starting part of the value is actually appears in the text box, like abcd.
I wonder, maybe we have to call something like Process.WaitForInputIdle() after each text typing? Where is the best place for saving application under test then? Or maybe there's a clean way to pass it in the args? Maybe any other ideas why such issue may appear?
Sometimes when you assign
textBox.Text = "abcdef"and then do something else - only starting part of the value is actually appears in the text box, likeabcd.I wonder, maybe we have to call something like
Process.WaitForInputIdle()after each text typing? Where is the best place for saving application under test then? Or maybe there's a clean way to pass it in the args? Maybe any other ideas why such issue may appear?