As per the requirement,
A dynamic web table needs to be filled from Excel sheet using selenium.
The web table is dynamic. And for each row in the excel sheet a new row has to be added in the web table
ID of a web element looks like this: asr_100_ct100_ikview_ct155_view
The next element's I'd looks like
asr_100_ct100_ikview_ct156_view
So, here I have done string concatenation like
Int j=155;
Driver.find element (by.id("asr_100_ct100_ikview_ct" +j+ "_view";
J++.
The above code is in for loop.
For each row in the excel sheet, a new webelement has to be found and data should be sent.
Error: unable to find the element with Id ==asr_100_ct100_ikview_ct155_view
For each row in the excel sheet? 2. What is the role of excel sheet data in this? 3. Can you share the relevant HTML DOM please?