Buddy @Srinu6038
Kindly find the below steps that could help you resolve your issue
Excel application scope activity with input of file path
Use read range activity with input of sheet name and output of variable of type datatable named out_dt
Use a for each row loop to iterate through each row in the loop and pass the input as out_dt obtained from previous activity
say if you want to get the first column value for each row in the table use a assign activity buddy
like this
out_cell_value = row(0).ToString
where 0 is the columnindex and you can also mention the columnname in string between double quotes like this
out_cell_value = row(“columnname”).ToString
Then still being in for each row loop, next to the above assign activity us a open browser activity and mention the URL of your web application and use type into with the above variable out_cell_value as input and search for each data in that particular row as you want, but keep in mind that the selector of open browser must be handled wih dynamic selectors replaced with wildcard * symbol, that is the changing attributes in the selector like title and aaname must be replaced with * symbol
Thats all buddy you are done…
Kindly try this and let know whether this works or not buddy
Cheers @Srinu6038
Buddy may i know where you want to type these values… You have used a type into activity…may i know where it is going to type…a web browser…? Buddy @Srinu6038