How to enable Hidden buttons in Selenium Webdriver -


I'm trying to automate a UI, the window has three buttons to submit, edit, and back buttons. When the data is manually created, all three buttons are enabled, but when I run the script via the WebDriver, then only submit is enabled and the editing and return buttons are hidden and to make it work for editing / retraction. does not appear.

Can someone please suggest what needs to be done?

Please post in your suggestions how to enable the button and do the operation? Or any alternative methods

There may be several reasons for this. But the most common is:

The web is now full of Ajax calls one day, so after writing the text you can trigger an AJAX call in your field. For example, Change Event

Selenium sendKeys will not trigger this. To get the appropriate response, you must call the JS function using the JavaScriptexecutor , which is responsible for triggering events


Comments