-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[WIP]Add browserkit component documentation #4310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This PR was merged into the 2.3 branch. Discussion ---------- Improve readability | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets | Commits ------- a715baf Improve readability
@@ -0,0 +1,18 @@ | |||
.. index:: | |||
single: Yaml | |||
single: Components; Yaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be changed to BrowserKit. ;)
I whould change "Browser Kit" to "BrowserKit" everywhere. However, that's a nice start. I would now add some description on how to use the component after the installation instructions. |
@@ -125,7 +125,8 @@ event listeners, you can learn more about them at :doc:`/cookbook/service_contai | |||
$controller = $event->getController(); | |||
|
|||
/* | |||
* $controller passed can be either a class or a Closure. This is not usual in Symfony but it may happen. | |||
* $controller passed can be either a class or a Closure. | |||
* This is not usual in Symfony but it may happen. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it looks like your PR is not based on the upstream branch
|
||
The Browser Kit component simulates the behavior of a web browser. | ||
|
||
The Browser Kit component allows you to make web request, click on links and submit forms. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
web requests or make a web request?
Working on documentation for the browser kit. Fixes #954