-1
I’m using c# to navigate enttet buttons and textbox a page. For this I use the TAB key because the names of the page objects are dynamic, every time the site updates the id and class change.
I’m using the following syntax:
pg.findElement(By.Name("nome_ficticio")).sendKeys(keys.Tab + keys.Tab + keys.Tab....)
There’s a way I could have Tab pressed repeatedly more efficiently?
Present more of your code and the structure of the page you are trying to interact with... maybe it is the case of changing your selector instead of being "given" tab...
– Leandro Angelo
Have you tried to save content in a session ?
– Joy Peter