Anyone know how to emulate a paste command inside a specific textbox of a webpage.
The website doesn't allow you to manually type and submit the data... it requires the act of pasting.
I've tried playing around with c# using something like this:
System.Windows.Forms.SendKeys.SendWait("^v");
... but, it doesn't appear to be working. Also, I am not sure how to set the value of what needs to be pasted. I have a list of things I want to loop through and paste...
Hopefully this makes sense and someone has a solution.
thanks.
The website doesn't allow you to manually type and submit the data... it requires the act of pasting.
I've tried playing around with c# using something like this:
System.Windows.Forms.SendKeys.SendWait("^v");
... but, it doesn't appear to be working. Also, I am not sure how to set the value of what needs to be pasted. I have a list of things I want to loop through and paste...
Hopefully this makes sense and someone has a solution.
thanks.