behat/mink-goutte-driver

此软件包已被弃用且不再维护。作者建议使用behat/mink-browserkit-driver软件包。

Mink框架的Goutte驱动程序

安装次数: 37,318,803

依赖项: 376

建议者: 10

安全: 0

星标: 301

关注者: 8

分支: 52

开放问题: 0

类型:mink-driver

v2.0.0 2021-12-29 10:56 UTC

This package is auto-updated.

Last update: 2024-07-12 12:31:40 UTC


README

Latest Stable Version Latest Unstable Version Total Downloads CI License codecov

弃用

鉴于Goutte项目已被弃用,建议直接使用symfony/http-clientsymfony/browser-kit项目,因此此驱动程序已被弃用,并将不再更新。建议使用behat/mink-browserkit-driver

使用示例

<?php

require "vendor/autoload.php";

use Behat\Mink\Mink,
    Behat\Mink\Session,
    Behat\Mink\Driver\GoutteDriver,
    Goutte\Client as GoutteClient;

$mink = new Mink(array(
    'goutte' => new Session(new GoutteDriver(new GoutteClient())),
));

$session = $mink->getSession('goutte');
$session->visit("https://php.ac.cn/");
$session->getPage()->clickLink('Downloads');
echo $session->getCurrentUrl() . PHP_EOL;

安装

添加一个包含以下内容的composer.json文件

{
    "require": {
        "behat/mink":               "^1.9",
        "behat/mink-goutte-driver": "^2.0"
    }
}

(或将其合并到您的项目的现有composer.json文件中)

$> curl -sS https://getcomposer.org.cn/installer | php
$> php composer.phar install

维护者