Accessing clipboard through software built on Python

Marko Rauhamaa marko at pacujo.net
Sat Oct 27 17:56:06 EDT 2018


Musatov <tomusatov at gmail.com>:

> I work from a web database of users and I continually have to copy email
> address and user ID to two separate fields on a Salesforce.com page.
>
> I go to the webpage, highlight email address then copy.
> Then go to Salesforce page, and paste.
> Then go back to the webpage, then copy the User ID.
> Then go back to Salesforce page, and paste.
>
> I think it would be much more efficient to:
> On webpage, copy emailaddress and user ID.
> Then go to Salesforce and paste email address and user ID.

Theoretically possible. In practice, probably not so much because both
applications must be aware of a special user-id-plus-email-address
selection data type.

What should be possible, though is:

 * select the email address with the left mouse button on the web page
 * middle click on the Salesforce page to copy it there
 * same for the user name

Similarly, drag-and-drop should work.


Marko



More information about the Python-list mailing list