If you have a structure of elements similar to the one shown in the image, it is possible to extract each static property using:
$$('#static-information .value').get(0)
or
$$('.static-property .value').get(0)
However, as each static property has a unique .key within that div, it may be possible to utilize that key to target specific elements and create a more generic selector that is less prone to errors if the order changes (eliminating the need for get(0), get(1) etc.).
For example:
investorFullName = $$('#static-information .key="Name" .value')
Or something like td[class='key'][value='Name']