-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
form-submission-spec.cy.js
38 lines (34 loc) · 1.15 KB
/
form-submission-spec.cy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// @ts-check
/// <reference types="cypress" />
import { validateCsvList } from './utils'
const neatCSV = require('neat-csv')
// console.log()
// console.log()
describe('file download', () => {
context('form submission', () => {
it('sends csv', () => {
cy.visit('/')
cy.contains('h3', 'Download from a form')
// prepare for form submission that returns back a file
// https://on.cypress.io/intercept
cy.intercept({
pathname: '/records.csv',
}, (req) => {
// instead of redirecting to the CSV file
// and having the browser deal with it
// download the file ourselves
// but we cannot use Cypress commands inside the callback
// thus we will download it later using the captured URL
req.redirect('/')
}).as('records')
cy.get('button[data-cy=download-form-csv]').click()
cy.wait('@records').its('request').then((req) => {
cy.request(req)
.then(({ body, headers }) => {
expect(headers).to.have.property('content-type', 'text/csv; charset=utf-8')
return neatCSV(body)
}).then(validateCsvList)
})
})
})
})