Trying to extract data from a webpage that uses AngularJS
using Google Apps Script UrlFetchApp.
The content on the page appears as placeholders like {{Field1}}
, {{Field2}}
, etc. These placeholders are then replaced with actual values after running angular.min.js
.
However, when using UrlFetchApp.fetch()
and getContentText()
, only the placeholder names are retrieved before AngularJS execution, not the actual values.
Is there a way to retrieve the final field values instead?