FriendsOfPHP / Goutte

Goutte, a simple PHP Web Scraper
MIT License
9.26k stars 1.01k forks source link

Add css element to modify page, and display canvas only #307

Open undefinedzain opened 7 years ago

undefinedzain commented 7 years ago

how to do it ?, here is my code.

$url = 'https://flightaware.com/live/flight/BTK7541'; $client = new Client();

        $crawler = $client->request('GET',$url);

      // here i want to add css styling that hide all elements except canvas containg plane tracking.
        $crawler->addContent('<style type="text/css">div:not(.flightPageStaticMap) {display: none;}</style>');

        $crawler->filter('.flightPageStaticMap')->each(function ($node) {
            // display canvas (map) only here
        });