my requirement is to copy data from excel rows from A1:A2000 and write in webpage textbox.
but when i am trying this it is writing on by one row in textbox not copying whole data in one go.
i am reading data using read range then converting dt to string using output data table activity and then using classic type into activity passing then converted text value in it.
i have only kept chome in window selector.
actually it is one woindow opening after clicking one button in webpage and there i ned to write names in one shot u can see screenshot
then its window selector issue..you need to use a separate use app/browser indicate second window make it unique as both windows are chrome and then can be used
The reason itβs pasting one row at a time is because Output Data Table converts each row separated by a newline but Type Into sends each line separately, depending on the webpage textbox behavior.
To paste all 2000 rows in one single shot, try one of the following methods
Instead of converting the whole DataTable, simply join the values from column A: