Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
200 Bytes
Cypress.Commands.add('validLogin', () => {
cy.visit('/login')
cy.get('input[name="email"]')
.type('example@example.com')
cy.get('input[name="password"]')
.type('1234')
})