I am new learner of selenium. I am working an application to automate few of it's scenario's. Am facing a problem in a scenario where I need to wait for an element until along with it's data to be loaded.
Problem: The problem here is the element is loading first and some how it's refreshing again. If any element has it's default value to be displayed the value will displaying after some milliseconds of time. I meant to say element is displaying first and data binding of that element is after sometime.
As I knew that the WebDriver will waiting for an element to be displayed on the DOM but not until data to be loaded. So, when am inserting some text into any input field it's refreshing with its default values again then the text entered is clearing.
My question is how to wait for an element along with it's data to be loaded on the page.?