test('a user with right credentials can log into the app', function () {
$page = visit('/app/login');
$page->assertSee('Accede a tu cuenta') // This is the title, it passes ✅
->fill('email', 'some@email.com') // does not work ❌
->fill('form.email', 'some@email.com') // does not work ❌
->fill('data.email', 'some@email.com') // does not work ❌
->type('email', 'some@email.com') // does not work ❌
->type('form.email', 'some@email.com') // does not work ❌
->type('data.email', 'some@email.com') // does not work ❌
->fill('form.input.fi-input', 'some@email.com') // does not work ❌
->type('form.input.fi-input', 'some@email.com') // does not work ❌
->debug();
});
test('a user with right credentials can log into the app', function () {
$page = visit('/app/login');
$page->assertSee('Accede a tu cuenta') // This is the title, it passes ✅
->fill('email', 'some@email.com') // does not work ❌
->fill('form.email', 'some@email.com') // does not work ❌
->fill('data.email', 'some@email.com') // does not work ❌
->type('email', 'some@email.com') // does not work ❌
->type('form.email', 'some@email.com') // does not work ❌
->type('data.email', 'some@email.com') // does not work ❌
->fill('form.input.fi-input', 'some@email.com') // does not work ❌
->type('form.input.fi-input', 'some@email.com') // does not work ❌
->debug();
});