Copy File Name from Chrome Inspect Element

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": ""
    }
  ]
}