Can someone explain to me why in the following .NET Specflow code, if my textboxElement is empty, then I send him the keys, why does the text remain empty? (when the text of the text field changes on the screen):
textboxElement.SendKeys("John Smith"); var text = textboxElement.Text;
Is it impossible to "update" the value of an element? (or I just missed something really obvious :-))
nashwan
source share