Hi, I was making a config and I Can’t complete the config.
In selenium can’t find a way to paste a link that had been copied in the Recycle Bin.
Example:
TUTORIAL LINK (SELENIUM DO CLICK)
THEN: LINK WAS COPIED IN RECYCLE BIN
Then: How Can I copy that link into another browser window ? Using Selenium
I don’t get what you are trying to do can you give a proper/better example.
Kind Regards
I dont think that you can directly get the value from the clipboard api dont think thats implement in ob2 but you can use the two selenium blocsk key down in page and type to paste from clipboard to somewhere
BLOCK:SeleniumPageKeyDown
key = "Control"
ENDBLOCK
BLOCK:SeleniumTypeElement
text = "V"
ENDBLOCK
and then i guess you could use the block get from attribute to get the value and store it in a accessible variable
Kind Regards