我正在尝试使用Behat和Mink在PHP中学习 BDD ,我正在使用Selenium2 driver。
我的问题一旦测试结束,如何以编程方式关闭Selenium2打开的每个浏览器窗口/标签?由于在每次测试之后每次关闭这么多浏览器窗口/标签很费时间。
我看到有一些选项允许在Java中使用相同的选项,Selenium2的本地语言(我也使用.jar文件),但在PHP中我找不到相应的。
<小时/> 注意:
有关详细信息,我已经包含了我正在尝试的代码。
我正试图在this page上为FeatureContext.php
写example.feature
,即:
# features/search.feature
Feature: Search
In order to see a word definition
As a website user
I need to be able to search for a word
Scenario: Searching for a page that does exist
Given I am on "/wiki/Main_Page"
When I fill in "search" with "Behavior Driven Development"
And I press "searchButton"
Then I should see "agile software development"
Scenario: Searching for a page that does NOT exist
Given I am on "/wiki/Main_Page"
When I fill in "search" with "Glory Driven Development"
And I press "searchButton"
Then I should see "Search results"
我的FeatureContext.php
如下:
<?php
use Behat\Behat\Tester\Exception\PendingException;
use Behat\Behat\Context\Context;
use Behat\Behat\Context\SnippetAcceptingContext;
use Behat\Gherkin\Node\PyStringNode;
use Behat\Gherkin\Node\TableNode;
/**
* Defines application features from the specific context.
*/
class FeatureContext implements Context, SnippetAcceptingContext
{
/**
* Initializes context.
*
* Every scenario gets its own context instance.
* You can also pass arbitrary arguments to the
* context constructor through behat.yml.
*/
public function __construct()
{
$this->driver = new \Behat\Mink\Driver\Selenium2Driver('firefox');
$this->session = new \Behat\Mink\Session($this->driver);
$this->session->start();
}
/**
* @Given I am on :url
*/
public function iAmOn($url)
{
$this->session->visit('http://en.wikipedia.org'.$url);
}
/**
* @When I fill in :field with :text
*/
public function iFillInWith($field, $text)
{
$this
->session
->getPage()
->find('css', '[type=' . $field . ']')
->setValue($text);
}
/**
* @When I press :button
*/
public function iPress($button)
{
$this
->session
->getPage()
->find('css', '[id=' . $button . ']')
->press();
}
/**
* @Then I should see :text
*/
public function iShouldSee($text)
{
$title = $this
->session
->getPage()
->find('css', 'h1')
->getText();
if ($title !== $text) {
new Exception('Invalid page');
}
$this->driver->close();
}
}
答案 0 :(得分:3)
尝试:
/**
* @AfterScenario
*/
public function tearDown()
{
$this->session->stop();
}