Copy File Name from Chrome Inspect Element

Hello Sir,
I am new to Kantu.
Everyday I need to join a zoom meeting in browser where meeting id and password is not displayed openly.
But if we go in browser inspect element>sources we can find a file name containing the meet id and password.
so I just need to Right Click>Inspect>Sources where I get my desired file (whose name I need to copy)
So My questions Are
1.How to Right Click In code?
2.How to copy file name From Chrome Inspect element>Sources

Thanks In Anticipation…

So you want to extract the pre-filled password from a form field? The store Value Selenium IDe command works for this. The password field is technically just like any other form field:

{
  "Name": "zoom",
  "CreationDate": "2021-7-12",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://zoom.us/signin",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "type",
      "Target": "id=password",
      "Value": "topsecret",
      "Description": "fill in pwd for testing"
    },
    {
      "Command": "storeValue",
      "Target": "id=password",
      "Value": "a",
      "Description": "extract password box"
    },
    {
      "Command": "echo",
      "Target": "extracted pwd is ${a}",
      "Value": "green",
      "Description": ""
    }
  ]
}