reinaldo / aspnet-goutte-client
为goutte客户端的Asp.net表单包装器
v0.0.2
2021-01-14 05:20 UTC
Requires
- fabpot/goutte: ^4.0
- guzzlehttp/guzzle: ^6.5
- illuminate/container: ^7.11
Requires (Dev)
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-09-20 00:35:53 UTC
README
示例调用
$uri = 'http://b3.php.loc/scrapper/tests/fixtures/http/responses/GET/busca-empresa-listada.html'; $formParams = []; $files = []; $headers = []; $crawler = $client->request("GET", $uri, $formParams, $files, $headers); $listCrawler = $client->eventSubmit('[value="Todas"]'); //this will submit aspnet form with __EVENTTARGET of button [value="Todas"]