Skip to content

Commit 32c44e4

Browse files
committed
auto updated documentation
1 parent 3836626 commit 32c44e4

File tree

17 files changed

+28
-18
lines changed

17 files changed

+28
-18
lines changed

_includes/extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ extensions:
104104
```
105105
#### Skipping recording of steps with annotations
106106

107-
It is also possible to skip recording of steps for specified tests by using the @skipRecoding annotation.
107+
It is also possible to skip recording of steps for specified tests by using the @skipRecording annotation.
108108

109109
```php
110110
/**

changelog.markdown

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ title: Codeception Changelog
77

88
# Changelog
99

10+
#### 2.5.3
11+
12+
* **[Db]** cleanup database if populator is used
13+
* **[FTP]** Compatibility with phpseclib v2 by **[kardagan](https://github.com/kardagan)**
14+
* **[JsonType]** Fixed issue [#5230](https://github.com/Codeception/Codeception/issues/5230) Dropped filters after a string:regex by **[ellisgl](https://github.com/ellisgl)**
15+
* **[Symfony]** Fixed persistent service functionality for Symfony 3 by **[Naktibalda](https://github.com/Naktibalda)**
16+
* **[ZendExpressive]** Set Cookie header in request by **[Naktibalda](https://github.com/Naktibalda)**
17+
* Updated vlucas/phpdotenv package to ^3.0 version by **[KartaviK](https://github.com/KartaviK)**
18+
* Documentation improvements by **[chrisaligent](https://github.com/chrisaligent)** **[richleland](https://github.com/richleland)** **[SanzhiyevMergen](https://github.com/SanzhiyevMergen)** **[sdlins](https://github.com/sdlins)**
19+
20+
1021
#### 2.5.2
1122

1223
* **[ZendExppressive]** Support for Zend Expressive v3 by **[Naktibalda](https://github.com/Naktibalda)**

docs/modules/AngularJS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ $I->click('Submit');
435435
// CSS button
436436
$I->click('#form input[type=submit]');
437437
// XPath
438-
$I->click('//form/*[@type=submit]');
438+
$I->click('//form/*[@type="submit"]');
439439
// link in context
440440
$I->click('Logout', '#nav');
441441
// using strict locator

docs/modules/Db.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@ $mails = $I->grabFromDatabase('users', 'email', array('name' => 'RebOOter'));
312312
* `param string` $column
313313
* `param array` $criteria
314314

315-
* `return` array
316315

317316

318317
#### grabNumRecords

docs/modules/FTP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ connection to SFTP uses [phpseclib](http://phpseclib.sourceforge.net/) pulled in
3333
For SFTP, add [phpseclib](http://phpseclib.sourceforge.net/) to require list.
3434
{% highlight yaml %}
3535
"require": {
36-
"phpseclib/phpseclib": "0.3.6"
36+
"phpseclib/phpseclib": "^2.0.14"
3737
}
3838

3939
{% endhighlight %}

docs/modules/Laravel5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ $I->click('Submit');
395395
// CSS button
396396
$I->click('#form input[type=submit]');
397397
// XPath
398-
$I->click('//form/*[@type=submit]');
398+
$I->click('//form/*[@type="submit"]');
399399
// link in context
400400
$I->click('Logout', '#nav');
401401
// using strict locator

docs/modules/Lumen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ $I->click('Submit');
295295
// CSS button
296296
$I->click('#form input[type=submit]');
297297
// XPath
298-
$I->click('//form/*[@type=submit]');
298+
$I->click('//form/*[@type="submit"]');
299299
// link in context
300300
$I->click('Logout', '#nav');
301301
// using strict locator

docs/modules/Phalcon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ $I->click('Submit');
326326
// CSS button
327327
$I->click('#form input[type=submit]');
328328
// XPath
329-
$I->click('//form/*[@type=submit]');
329+
$I->click('//form/*[@type="submit"]');
330330
// link in context
331331
$I->click('Logout', '#nav');
332332
// using strict locator

docs/modules/PhpBrowser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ $I->click('Submit');
318318
// CSS button
319319
$I->click('#form input[type=submit]');
320320
// XPath
321-
$I->click('//form/*[@type=submit]');
321+
$I->click('//form/*[@type="submit"]');
322322
// link in context
323323
$I->click('Logout', '#nav');
324324
// using strict locator

docs/modules/Silex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ $I->click('Submit');
264264
// CSS button
265265
$I->click('#form input[type=submit]');
266266
// XPath
267-
$I->click('//form/*[@type=submit]');
267+
$I->click('//form/*[@type="submit"]');
268268
// link in context
269269
$I->click('Logout', '#nav');
270270
// using strict locator

0 commit comments

Comments
 (0)