HOW TO PASTE A LINK FROM Recycle Bin When u Click botom? SELENIUM

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

  1. With selenium u can do “Click” to any button, in this case the button its “Copiar Link” that in english means “Copy Link”. So when selenium do “Click” u copied link.
    1f 2

  2. Now u already do that and u copied link, but how I can make that be pasted in other browser navigation window ? like the third photo.

THAT IS THE LINK THAT GOT COPIED WHEN SELENIUM DO "CLICK" TO THAT "Copiar link"

  1. Then to navigate to that link. that’s all I want. I don’t know actually how to do that with selenium options.

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