Skip to content

Commit 63bf16d

Browse files
author
John Doherty
committed
fixed read me typos
1 parent 10bd228 commit 63bf16d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.MD

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ By default tests are run using Google Chrome, to run tests using another browser
6363

6464
### Feature files
6565

66-
A feature file is a [Business Readable, Domain Specific Language](http://martinfowler.com/bliki/BusinessReadableDSL.html) file that lets you describe software’s behaviour without detailing how that behaviour is implemented. Feature files are written using the [Gherkin syntax](https://github.com/cucumber/cucumber/wiki/Gherkin) and must live in a folder named **features** within the root of your project.
66+
A feature file is a [Business Readable, Domain Specific Language](http://martinfowler.com/bliki/BusinessReadableDSL.html) file that lets you describe software’s behavior without detailing how that behavior is implemented. Feature files are written using the [Gherkin syntax](https://github.com/cucumber/cucumber/wiki/Gherkin) and must live in a folder named **features** within the root of your project.
6767

6868
```gherkin
6969
# ./features/google-search.feature
@@ -93,7 +93,7 @@ module.exports = function () {
9393

9494
this.Then(/^I should see some results$/, function () {
9595

96-
// driver wair returns a promise so return that
96+
// driver wait returns a promise so return that
9797
return driver.wait(until.elementsLocated(by.css('div.g')), 10000).then(function(){
9898

9999
// return the promise of an element to the following then.
@@ -132,7 +132,7 @@ Page objects also have access to the same runtime variables available to step de
132132
An example page object:
133133

134134
```javascript
135-
// ./page-objects/gogole-search.js
135+
// ./page-objects/google-search.js
136136

137137
module.exports = {
138138

@@ -208,7 +208,7 @@ You can register before and after handlers for features and scenarios:
208208

209209
| Event | Example
210210
| -------------- | ------------------------------------------------------------
211-
| BeforeFeature | ```this.BeforeFeatures(function(feature, callback) {}) ```
211+
| BeforeFeature | ```this.BeforeFeatures(function(feature, callback) {})```
212212
| AfterFeature | ```this.AfterFeature(function(feature, callback) {});```
213213
| BeforeScenario | ```this.BeforeScenario(function(scenario, callback) {});```
214214
| AfterScenario | ```this.AfterScenario(function(scenario, callback) {});```
@@ -276,7 +276,7 @@ module.exports = function () {
276276

277277
You can use the framework without any command line arguments if your application uses the following folder structure:
278278

279-
```
279+
```bash
280280
.
281281
├── features
282282
│ └── google-search.feature
@@ -314,7 +314,7 @@ Everyone is very welcome to contribute to this project. You can contribute just
314314

315315
IntelliJ based IDE's have a plugin that allows the tester to control click on a `Given`, `When`, `Then` statement within a Cucumber feature file and have the user taken to the associated step definition. This plugin relies on your project having the following folder structure:
316316

317-
```
317+
```bash
318318
.
319319
└── features
320320
│ google-search.feature

0 commit comments

Comments
 (0)