Skip to content

Instantly share code, notes, and snippets.

View heedrox's full-sized avatar
😃
Always happy

Jordi Marti heedrox

😃
Always happy
View GitHub Profile
describe('Temperature, with no alarms', () => {
it('takes temperature with manual input', () => {
loginPage.visit();
const menuPage = loginPage.doLogin(TEST_USER, CORRECT_PASSWORD);
const measurementsPage = menuPage.chooseMeasurements();
const temperaturePage = measurementsPage.chooseTemperature();
temperaturePage.enterMeasurement(36);
temperaturePage.expect().toSayPerfect();
});