Skip to content

Commit baae118

Browse files
committed
Fix typos in end_to_end.rst
1 parent 70345ee commit baae118

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

testing/end_to_end.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ to install ChromeDriver and geckodriver locally:
4949
5050
$ vendor/bin/bdi detect drivers
5151
52-
Panther will detect and use automatically drivers stored in the ``drivers/`` directory
52+
Panther will detect and automatically use drivers stored in the ``drivers/`` directory
5353
of your project when installing them manually. You can download `ChromeDriver`_
54-
for Chromium or Chromeand `GeckoDriver`_ for Firefox and put them anywhere in
54+
for Chromium or Chrome and `GeckoDriver`_ for Firefox and put them anywhere in
5555
your ``PATH`` or in the ``drivers/`` directory of your project.
5656

5757
Alternatively, you can use the package manager of your operating system
@@ -132,7 +132,7 @@ Creating a TestCase
132132
~~~~~~~~~~~~~~~~~~~
133133

134134
The ``PantherTestCase`` class allows you to write end-to-end tests. It
135-
automatically starts your app using the built-in PHP web server and let
135+
automatically starts your app using the built-in PHP web server and lets
136136
you crawl it using Panther. To provide all the testing tools you're used
137137
to, it extends `PHPUnit`_'s ``TestCase``.
138138

@@ -264,7 +264,7 @@ future::
264264
}
265265
}
266266

267-
You can then run this test by using PHPUnit, like you would do for any other
267+
You can then run this test using PHPUnit, like you would for any other
268268
test:
269269

270270
.. code-block:: terminal
@@ -498,13 +498,13 @@ Having a Multi-domain Application
498498
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
499499

500500
It happens that your PHP/Symfony application might serve several different
501-
domain names. As Panther saves the Client in memory between tests to improve
501+
domain names. As Panther saves the client in memory between tests to improve
502502
performance, you will have to run your tests in separate
503503
processes if you write several tests using Panther for different domain names.
504504

505505
To do so, you can use the native ``@runInSeparateProcess`` PHPUnit annotation.
506506
Here is an example using the ``external_base_uri`` option to determine the
507-
domain name used by the Client when using separate processes::
507+
domain name used by the client when using separate processes::
508508

509509
// tests/FirstDomainTest.php
510510
namespace App\Tests;
@@ -792,7 +792,7 @@ The following features are not currently supported:
792792
* Selecting invalid choices in select
793793

794794
Also, there is a known issue if you are using Bootstrap 5. It implements a
795-
scrolling effect, which tends to mislead Panther. To fix this, we advise you to
795+
scrolling effect which tends to mislead Panther. To fix this, we advise you to
796796
deactivate this effect by setting the Bootstrap 5 ``$enable-smooth-scroll``
797797
variable to ``false`` in your style file:
798798

0 commit comments

Comments
 (0)