Thank you, @postwick.
I need to copy all the column values to a web page. In the web page, there is a table. I can get column value by value and paste it into the table cell using selectors, finding the proper table row.
On the other hand the application has a paste from clipboard activity using which I can paste the selected columns into the cells.
For this I need to have the column data in a clip board.
You wouldn’t use copy/paste for this. You’d use UI Automation and either Type Into or Set Text.
the application has a paste from clipboard activity
What format does it need the data to be in? These are the kind of details we need in order to help you. Just saying “column data in the clipboard” isn’t detail.
Text is still vague. I know you already found a solution, but it’s important to provide detail when asking questions. Text could mean comma delimited, each value on a separate line, fixed length, some other custom text format, etc.