Skip to content
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

Change all occurrences of "must simpler" to "much simpler". #135

Merged
merged 1 commit into from
Oct 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/api/commands/focus.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ cy.get('textarea').focus().type('Nice Product!').blur()

`.focus()` is just a helpful command which is a simple shortcut. Normally there's no way for a user to simply "focus" an element without causing another action or side effect. Typically the user would have to click or tab to this element.

Oftentimes its must simpler and conveys what you're trying to test by just using `.focus()` directly.
Oftentimes its much simpler and conveys what you're trying to test by just using `.focus()` directly.

If you want the other guarantees of waiting for an element to become actionable, you should use a different command like {% url `.click()` click %}.

Expand Down
2 changes: 1 addition & 1 deletion source/api/commands/submit.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ cy.get('#contact').submit()

`.submit()` is just a helpful command which is a simple shortcut. Normally a user has to perform a different "action" to submit a form. It could be clicking a submit `<button>`, or pressing `enter` on a keyboard.

Oftentimes its must simpler and conveys what you're trying to test by just using `.submit()` directly.
Oftentimes its much simpler and conveys what you're trying to test by just using `.submit()` directly.

If you want the other guarantees of waiting for an element to become actionable, you should use a different command like {% url `.click()` click %} or {% url `.type()` type %}.

Expand Down
2 changes: 1 addition & 1 deletion source/guides/getting-started/testing-your-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ The good news is that we aren't Selenium, nor are we a traditional e2e testing t

## Stubbing the Server

Another valid approach opposed to seeding and talking to your server is to just bypass it altogether. Must simpler!
Another valid approach opposed to seeding and talking to your server is to just bypass it altogether. Much simpler!

While you'll still receive all of the regular HTML / JS / CSS assets from your server and you'll continue to {% url `cy.visit()` visit %} it in the same way - you can instead **stub** the JSON responses coming from it.

Expand Down