Paste options while recording in script mode
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Paste options while recording in script mode
Need help on how to paste data while in script mode? Attached error and screen shot.
Thanks!
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In your screenshots I don't see anything related to pasting, just ClickItem(undefined). You can't click undefined so that is why you are getting the error about a Control Item not being found.
Thanks,
Carson
Click the Accept as Solution button if my answer has helped
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you. When I inspect element I get the following:
<textarea id="licensetext" class="licensetext ng-dirty ng-valid-parse ng-touched ng-empty ng-invalid ng-invalid-required" ng-model="licenseText" name="licensetext" required="x" rows="20" cols="80" form="form" style=""></textarea>
But I need to be able to paste data to this text area via ctrl v (^v) or right mouse click paste from the pop up which is where I am running into issues.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Using, specifically, ctrl-V isn't necessary.
Basically, you don't want the ClickItem. That won't do what you want.
You need to send a "Keys" command to the desired text area. As the parameter for that Keys, since you already have the contents in the clipboard, just put in Sys.ClipBoard and that will type into the desired field the contents of your clipboard.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!
