Hi I am working with selenium using Java. I have an editable table in which I need to enter nearly 12-17 values continuously. what I was trying is:
Prdcode.sendkeys(keys.TAB,"1000",keys.TAB,keys.TAB,"2000",....etc);
Now the problem is that it's not entering all the values; If I send 1000, it enters only 10 and triggers tab.
I have even tried "\t" but the problem is that it will append all the values instead of 'clear and enter'. Can some one help me on this?
Keys.TAB? Is it to jump from textField to textField in a form? Also do you mean it is only entering a portion of the value (e.g."10"instead of"1000"), or only 10 values from the (12) passed values? And finally, what isPrdcode? AWebElement? Or something else? Please post a bit more code so we know what is going on.