Hello,
I want to create a macro with which I can copy Meeting id and Password From Browser and put it in my desktops zoom app respectively one by one to connect to that meeting.
I have Installed the X-modules.
This is my current macro. Which is only able to copy meeting id and password.
{
“Command”: “click”,
“Target”: “xpath=//[@id=“app”]/div/main/div/div/div[2]/div/div/table/tbody/tr[2]/td[4]/div/button/span",
“Value”: “”,
“Description”: “”
},
{
“Command”: “click”,
“Target”: "xpath=//[@id=“content”]/div[3]/div[2]/div[2]/div/div/button”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “click”,
“Target”: “xpath=//[@id=“phone”]/div/span",
“Value”: “”,
“Description”: “”
},
{
“Command”: “storeText”,
“Target”: "xpath=//[@id=“phone-tab”]/div/ol/li/span”,
“Value”: “A”,
“Description”: “This Meeting ID.”
},
{
“Command”: “storeText”,
“Target”: “xpath=//*[@id=“phone-tab”]/div/ol/li[3]/span”,
“Value”: “B”,
“Description”: “This Is Password.”
}
]
}
After this step can i automate it to automatically open zoom app in my computer and first put obtained meeting id and then password to automatically join zoom meeting in my desktops app?
And whole reason to this is that i dont want to join meeting from browser
Thanks In Anticipation!