This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules/workshopper/util/makews.js exercises/menu.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Drupal.org search | |
In order to find modules on Drupal.org | |
As a Drupal user | |
I need to be able to use Drupal.org search | |
@javascript | |
Scenario: Searching for "behat" | |
Given I go to "http://drupal.org" | |
When I search for "behat" | |
Then I should see "Behat Drupal Extension" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @When /^I search for "([^"]*)"$/ | |
*/ | |
public function iSearchFor($arg1) | |
{ | |
$this->fillField('Search Drupal.org', $arg1); | |
$this->pressButton('Search'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: | |
paths: | |
features: features | |
bootstrap: %behat.paths.features%/bootstrap | |
extensions: | |
Behat\MinkExtension\Extension: | |
goutte: ~ | |
selenium2: ~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"require": { | |
"behat/behat": "2.4.*@stable", | |
"behat/mink": "1.5.*@stable", | |
"behat/mink-goutte-driver": "*", | |
"behat/mink-extension": "*", | |
"behat/mink-selenium2-driver": "*" | |
} | |
} |
NewerOlder