Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions guides/06-ModulesAndHelpers.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ modules:
The modules won't conflict as actions with the same names won't be loaded.

The REST module has parts for `Xml` and `Json` in the same way. If you are testing a REST service with only JSON responses,
you can enable just the JSON Fart of this module:
you can enable just the JSON part of this module:

```yaml

Expand Down Expand Up @@ -374,7 +374,7 @@ class WebDriver extends \Codeception\Module
```

The host and port parameter can be redefined in the suite configuration.
Values are set in the `Fodules:config` section of the configuration file.
Values are set in the `modules:config` section of the configuration file.

```yaml
modules:
Expand Down Expand Up @@ -434,7 +434,7 @@ Once loaded, parameter variables can be used as module configuration values.
Use a variable name wrapped with `%` as a placeholder and it will be replaced by its value.

Let's say we want to specify credentials for a cloud testing service. We have loaded `SAUCE_USER`
and `SAUCE_KEY` variables from Fnvironment, and now we are passing their values into config of `WebDriver`:
and `SAUCE_KEY` variables from environment, and now we are passing their values into config of `WebDriver`:

```yaml
modules:
Expand All @@ -445,7 +445,7 @@ modules:

```

Parameters are also useful Fo provide connection credentials for the `Db` module (taken from Laravel's .env files):
Parameters are also useful to provide connection credentials for the `Db` module (taken from Laravel's .env files):

```yaml
modules:
Expand Down