Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b516d71
Add blank 3.5.0 changelog
jennifer-shehane Aug 23, 2019
6d988c6
Add loopback proxy config
jennifer-shehane Aug 23, 2019
b42cfa4
Add note for opening a local file. (#1990)
clarmso Aug 23, 2019
d8d9b67
Adding documentation for addition of presets for following viewports
ccodecamp Aug 27, 2019
87b1b69
Add note in 'history' of viewport indicating the version new presets …
jennifer-shehane Aug 27, 2019
ae24e63
Add cy.visit() qs option (#2042)
flotwig Sep 17, 2019
fdf8035
Merge branch 'develop' into 3.5.0-release-changes
jennifer-shehane Sep 24, 2019
b27cf76
Add examples of using the qs arg to pass in query parameters.
jennifer-shehane Sep 24, 2019
4d3effa
Merge branch 'develop' into 3.5.0-release-changes
flotwig Sep 30, 2019
5355ceb
Merge branch 'develop' into 3.5.0-release-changes
jennifer-shehane Oct 1, 2019
92b93fa
Began writing changelog for 3.5.0
jennifer-shehane Oct 1, 2019
db03ba9
Merge remote-tracking branch 'origin/3.5.0-release-changes' into 3.5.…
jennifer-shehane Oct 1, 2019
66a7fd1
Document config-file argument (#1630)
jennifer-shehane Oct 2, 2019
c7a712b
Updated more copy of changelog
jennifer-shehane Oct 1, 2019
c779f4e
Continue updating copy of changelog to be more human readable.
jennifer-shehane Oct 2, 2019
1180498
Increases max viewport from 3000 to 4000 px (#2099)
nico-bellante Oct 2, 2019
cac2cfe
Document nodeVersion configuration option (#1876)
flotwig Oct 2, 2019
23642d5
Delete English chinese doc that was accidentally pushed in
jennifer-shehane Oct 2, 2019
cec214f
Make changes to cy.route from https://github.com/cypress-io/cypress-d…
jennifer-shehane Oct 2, 2019
56cee7d
Link to config-file - start changelog of doc changes. Fix broken link
jennifer-shehane Oct 2, 2019
e19ac7e
Write more of the changelog copy including Docs updates
jennifer-shehane Oct 2, 2019
beeee40
Put correct version of Node bundled with Cypress to 12.0.0
jennifer-shehane Oct 2, 2019
0bde2ba
Correct `qs` usage in `visit.md`
flotwig Oct 3, 2019
f1388a9
added keyboard shortcuts to docs (#2131)
mishabruml Oct 7, 2019
ac3b9b0
Add padding support to element screenshot (#2139)
sebinsua Oct 11, 2019
ee0b20c
.rightclick command (#2174)
jennifer-shehane Oct 21, 2019
717491c
Simulated click fixes (#2176)
jennifer-shehane Oct 21, 2019
f855469
Continue adding new things to 3.5.0 changelog
jennifer-shehane Oct 21, 2019
3cae3a1
Add ~ cache instructions
jennifer-shehane Oct 21, 2019
19ba0c1
Add more issues to 3.5.0 changelog
jennifer-shehane Oct 21, 2019
2340263
Remove warning about video not being supported in Chrome browsers
jennifer-shehane Oct 21, 2019
620e589
Merge branch 'develop' into 3.5.0-release-changes
jennifer-shehane Oct 21, 2019
fd3fe70
Add history to screenshot to indicate it was added in 3.5.0
jennifer-shehane Oct 21, 2019
f45c53d
remove dead link to click events
jennifer-shehane Oct 21, 2019
84ec952
Minor fixes
jennifer-shehane Oct 21, 2019
0533bef
Add more fixed issues to 3.5
jennifer-shehane Oct 23, 2019
68eba82
Fix issue number that issue fixes.
jennifer-shehane Oct 23, 2019
8d6754b
Merge branch 'develop' into 3.5.0-release-changes
jennifer-shehane Oct 23, 2019
0088318
Update roadmap to reflect more current work
jennifer-shehane Oct 23, 2019
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
4 changes: 2 additions & 2 deletions source/api/commands/visit.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ cy.visit('http://localhost:3500/users', {
The parameters passed to `qs` will be merged into existing query parameters on the `url`.

```js
// visits http://example.com/users?page=1&admins
// visits http://example.com/users?page=1&admin=true
cy.visit('http://example.com/users?page=1', {
qs: { 'admins' }
qs: { admin: true }
})
```

Expand Down