Hello,
is it possible to scrap texts in html script tags with WebScraper?
Sorry if this was asked before, I couldn't find information.
Here is a use-case:
For example to scrap such html script tag to retrieve latitudes (43.498387) and longitudes (-1.543922) :
<script type="text/javascript">
google.maps.event.addDomListener(window, 'load', init);
function init() {
var mapOptions = {
scrollwheel: false,
zoom: 10,
center: new google.maps.LatLng(43.498387, -1.543922),
styles: []
};
// ...
}
</script>