Is there a way to use a clipboard or something to COPY something from within the simulated device and paste it inside my real machine?
Hi Tim,
At the moment, copying from within the session and pasting outside of the session is not supported.
Hi @LambdaTest
I am trying to copy to clipboard from my local machine to real devices lambda Test farm running automation but it is not working. I am using this command ‘self.driver.set_clipboard_text(api_key)’ with Appium driver.
What is the Lambda Test command to copy to the clipboard?
Hello @juan.murillo , For implementing clipboard functionality while Automation Execution below commands can be used. Set clipboard content from test script driver.executeScript(“lambda-set-clipboard:Text”); Read clipboard content [ Can be used to suffice mentioned use case] driver.executeScript(“lambda-get-clipboard”);