@@ -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
@@ -267,7 +267,7 @@ it with ``Driver\SahiDriver``:
267267
268268If you want more control during driver initialization, like for example if you
269269want to configure the driver to talk with a proxy on another machine - use the
270- more verbose version with a second client arugment :
270+ more verbose version with a second client argument :
271271
272272.. code-block :: php
273273
@@ -282,7 +282,7 @@ more verbose version with a second client arugment:
282282 ``$sid `` is a Sahi session ID. It's a unique string, used by the driver and
283283 Sahi proxy in order to be able to talk with each other. You should fill
284284 this with ``null `` if you want Sahi to start your browser automatically
285- or with some uniqe string if you want to control an already started browser.
285+ or with some unique string if you want to control an already started browser.
286286
287287 ``$host `` simply defines the host on which Sahi is started. It's
288288 ``localhost `` by default.
@@ -443,7 +443,7 @@ browser emulator with it:
443443 // open another page:
444444 $session->visit('http://my_project.dev/second_page.php')
445445
446- // use history controlls :
446+ // use history controls :
447447 $session->reload();
448448 $session->back();
449449 $session->forward();
@@ -470,7 +470,7 @@ browser emulator with it:
470470Cookies and Headers management
471471~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
472472
473- With ``Mink\Session `` you can controll your browsers cookies and headers:
473+ With ``Mink\Session `` you can control your browsers cookies and headers:
474474
475475.. code-block :: php
476476
@@ -680,7 +680,7 @@ There's whole lot more named selectors for you to use:
680680* ``link `` - for searching a link by its href, id, title, img alt or value
681681* ``button `` - for searching a button by its name, id, value, img alt or title
682682* ``link_or_button `` - for searching for both, links and buttons
683- * ``content `` - for sarching a specific page content (text)
683+ * ``content `` - for searching a specific page content (text)
684684* ``select `` - for searching a select field by its id, name or label
685685* ``checkbox `` - for searching a checkbox by its id, name, or label
686686* ``radio `` - for searching a radio button by its id, name, or label
@@ -816,7 +816,7 @@ You can fill form fields/retrieve its values with form manipulation actions:
816816
817817.. code-block :: php
818818
819- // check/unchech checkbox:
819+ // check/uncheck checkbox:
820820 if ($el->isChecked()) {
821821 $el->uncheck();
822822 }
0 commit comments