Skip to content

Commit 38facf7

Browse files
committed
Fixed typos
1 parent b976373 commit 38facf7

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

index.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Mink v1.2 comes with four drivers out of the box:
183183
the creator of the Symfony framework - Fabien Potencier.
184184

185185
* ``SahiDriver`` - provides a bridge for `Sahi <http://sahi.co.in/w/>`_ browser
186-
controller. Sahi is a new JS browser controller, that fastly replaced old
186+
controller. Sahi is a new JS browser controller, that fast replaced old
187187
Selenium testing suite. It's both, easier to setup and to use than classical
188188
Selenium. It has a GUI installer for each popular operating system out there
189189
and is able to control every systems browser through a special bundled proxy
@@ -268,7 +268,7 @@ it with ``Driver\SahiDriver``:
268268

269269
If you want more control during driver initialization, like for example if you
270270
want to configure the driver to talk with a proxy on another machine - use the
271-
more verbose version with a second client arugment:
271+
more verbose version with a second client argument:
272272

273273
.. code-block:: php
274274
@@ -283,7 +283,7 @@ more verbose version with a second client arugment:
283283
``$sid`` is a Sahi session ID. It's a unique string, used by the driver and
284284
Sahi proxy in order to be able to talk with each other. You should fill
285285
this with ``null`` if you want Sahi to start your browser automatically
286-
or with some uniqe string if you want to control an already started browser.
286+
or with some unique string if you want to control an already started browser.
287287

288288
``$host`` simply defines the host on which Sahi is started. It's
289289
``localhost`` by default.
@@ -444,7 +444,7 @@ browser emulator with it:
444444
// open another page:
445445
$session->visit('http://my_project.dev/second_page.php')
446446
447-
// use history controlls:
447+
// use history controls:
448448
$session->reload();
449449
$session->back();
450450
$session->forward();
@@ -471,7 +471,7 @@ browser emulator with it:
471471
Cookies and Headers management
472472
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
473473

474-
With ``Mink\Session`` you can controll your browsers cookies and headers:
474+
With ``Mink\Session`` you can control your browsers cookies and headers:
475475

476476
.. code-block:: php
477477
@@ -681,7 +681,7 @@ There's whole lot more named selectors for you to use:
681681
* ``link`` - for searching a link by its href, id, title, img alt or value
682682
* ``button`` - for searching a button by its name, id, value, img alt or title
683683
* ``link_or_button`` - for searching for both, links and buttons
684-
* ``content`` - for sarching a specific page content (text)
684+
* ``content`` - for searching a specific page content (text)
685685
* ``select`` - for searching a select field by its id, name or label
686686
* ``checkbox`` - for searching a checkbox by its id, name, or label
687687
* ``radio`` - for searching a radio button by its id, name, or label
@@ -817,7 +817,7 @@ You can fill form fields/retrieve its values with form manipulation actions:
817817

818818
.. code-block:: php
819819
820-
// check/unchech checkbox:
820+
// check/uncheck checkbox:
821821
if ($el->isChecked()) {
822822
$el->uncheck();
823823
}

0 commit comments

Comments
 (0)