Servicenow. Polaris app. Page source not contains any usual locators

Hello all automation Guru! After the new version of ServiceNow (servicenow.com), I see in ‘Page Source’ just something like the code below. Is there any way to force valid HTML code using Selenium and Chromedriver? Thanks in Advance. Alex

<body>

		<macroponent-f51912f4c700201072b211d4d8c26010
				component-id="yfctzpp"
				macroponent-namespace="yfctzpp"
				app-id="a84adaf4c700201072b211d4d8c260b7"
				global-navigation-config="{
  &quot;features&quot;: {
    &quot;record&quot;: {
      &quot;_default&quot;: {
        &quot;experiencePriorityList&quot;: [
        ]
      }
    },
    &quot;list&quot;: {
      &quot;_default&quot;: {
        &quot;experiencePriorityList&quot;: [
          {
            &quot;name&quot;: &quot;Polaris App&quot;,
            &quot;sysId&quot;: &quot;a84adaf4c700201072b211d4d8c260b7&quot;
          }
        ]
      }
    },
    &quot;search&quot;: {
      &quot;_default&quot;: {
        &quot;experiencePriorityList&quot;: [
          {
            &quot;name&quot;: &quot;Polaris App&quot;,
            &quot;sysId&quot;: &quot;a84adaf4c700201072b211d4d8c260b7&quot;
          }
        ]
      }
    },
    &quot;inbox&quot;:{
      &quot;_default&quot;: {
        &quot;experiencePriorityList&quot;: [
          {
            &quot;name&quot;: &quot;Service Operations Workspace&quot;,
            &quot;sysId&quot;: &quot;aa881cad73c4301045216238edf6a716&quot;
          },
          {
            &quot;name&quot;: &quot;CSM/FSM Configurable Workspace&quot;,
            &quot;sysId&quot;: &quot;c4e321a3530210102c30ddeeff7b12f6&quot;
          }
        ]
      }
    }
  }
}"
evaluated-data-brokers="{&quot;polaris_user_settings_access_query&quot;:[{&quot;errors&quot;:[],&quot;executionResult&quot;:{&quot;output&quot;:{&quot;data&quot;:{&quot;GlideUserSettingsAccess_Query&quot;:{&quot;userSettingsAccess&quot;:{&quot;showApplicationPicker&quot;:false,&quot;showUpdateSetPicker&quot;:false,&quot;showDomainPicker&quot;:false,&quot;showEncryptionPicker&quot;:false,&quot;showCryptoModulePicker&quot;:false}}}}},&quot;executionTime&quot;:1,&quot;parentResourceId&quot;:null,&quot;status&quot;:200,&quot;sysId&quot;:&quot;79c9fd62c7113010099a308dc7c260f1&quot;}],&quot;polaris_app_shell_header_logo_target&quot;:[{&quot;errors&quot;:[],&quot;executionResult&quot;:{&quot;output&quot;:{&quot;data&quot;:{&quot;GlideHeaderLogo_Query&quot;:{&quot;getLogoURL&quot;:{&quot;external&quot;:false,&quot;target&quot;:&quot;gsft_main&quot;,&quot;url&quot;:&quot;now/nav/ui/classic/params/target/$pa_dashboards_overview.do&quot;,&quot;type&quot;:&quot;classic&quot;}}}}},&quot;executionTime&quot;:0,&quot;parentResourceId&quot;:null,&quot;status&quot;:200,&quot;sysId&quot;:&quot;b67e4b90c7003010099a308dc7c26094&quot;}]}"></macroponent-f51912f4c700201072b211d4d8c26010>

You can inject JavaScript in the browser with the help of JavaScript executor, which we support.

But you can also use this method to insert the HTML: java - put a string with html/Javascript into selenium webdriver - Stack Overflow

Yes, of course. But how to get HTML from this garbage?