Selenium via java - sendKeys doesn't send specific chars to input -
i'm having strange condition i'm trying type input using sendkeys , reuslt specific chars doesn't seem implemented in input @ all. i'm trying do:
webdriver.findelement(by.id("additionalinfo(token_autocompleteselectinputid)")).sendkeys("(test)");
the result input field : test) , missing char '(' . if try
webdriver.findelement(by.id("additionalinfo(token_autocompleteselectinputid)")).sendkeys("((((((((((")
the result input empty.
anyone ever faced issue before? happening on specific input in app, couldn't find related in html code. in advance.
edit: can manually type ( in input field.
maybe it's special character selenium, have tried using escape characters? backslash before if allows it.
edit: found issue report on github last year, not sure if agreed not fix it. executing script type "(" seems alternative. source: https://github.com/seleniumhq/selenium/issues/674
Comments
Post a Comment