- Realizar una agenda de contactos que cuente con el siguiente menú:
Bienvenido a la Agenda
- 1 - Listado de Contactos (4)
- 2 - Crear Contactos
- 3 - Eliminar Contactos
- 4 - Salir de la Agenda
/*Danny Feliz - 20152015*/"use strict";function _defineProperty(a,b,c){return b in a?Object.defineProperty(a,b,{value:c,enumerable:!0,configurable:!0,writable:!0}):a[b]=c,a}var styles="\n <style>\n .bg-white {\n background-color: white;\n }\n\n .up-arrow {\n border: solid black;\n border-width: 0 3px 3px 0;\n display: inline-block;\n padding: 3px;\n transform: rotate(-135deg);\n -webkit-transform: rotate(-135deg);\n }\n\n .text-green {\n color: darkgreen;\n }\n\n .text-red {\n color: darkred;\n }\n\n .available-size {\n font-size: xx-large;\n text-align: center;\n }\n\n .text-center {\n text-align: center;\n }\n\n .scroll3{\n width: 100%;\n position: relative;\n overflow: visible;\n }\n </style>\n";$("body").append(styles);var courseInformation=[],daysOfWeek={L:"LUNES",K:"MARTES",M:"MI\xC9RCOLES",J:"JUEVES",V:"VIERNES",S:"S\xC1BADO",D:"DOMINGO"},MAX_HEIGHT_AL |
CREATE TABLE job_grades ( | |
grade CHAR(1), | |
lowest_sal NUMBER(8,2) NOT NULL, | |
highest_sal NUMBER(8,2) NOT NULL | |
); | |
ALTER TABLE job_grades | |
ADD CONSTRAINT jobgrades_grade_pk PRIMARY KEY (grade); | |
INSERT INTO job_grades VALUES ('A', 1000, 2999); |
const timeoutList = [5000, 2500, 4500]; | |
async function initInterval() { | |
for(const timeout of timeoutList) { | |
await runTimeout(timeout); | |
} | |
} | |
function runTimeout(timeout) { | |
return new Promise(resolve => { |
{ | |
"globals": { | |
"alwaysShowTabs": true, | |
"defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"initialCols": 120, | |
"initialRows": 30, | |
"keybindings": [ | |
{ | |
"command": "closeTab", | |
"keys": ["ctrl+w"] |
{"lastUpload":"2020-05-27T16:49:55.692Z","extensionVersion":"v3.4.3"} |
/// <reference types="cypress" /> | |
import LoginPageObject from "./page/LoginPageObject"; | |
describe('Login Page', () => { | |
const invalidEmail = "invalid@email"; | |
const validEmail = "[email protected]"; | |
const loginPage = new LoginPageObject(); | |
beforeEach(() => { | |
cy.visit("https://memod.com"); |
class LoginPageObject { | |
getEmailInput() { | |
return cy.get("#email"); | |
} | |
getPasswordInput() { | |
return cy.get("#password"); | |
} | |
} |
{ | |
"Id": 210, | |
"CreatedAt": "2020-11-01T15:18:39.271Z", | |
"UpdatedAt": "2021-01-28T18:39:29.314Z", | |
"DeletedAt": null, | |
"IsActive": true, | |
"LocationId": 15, | |
"Location": { | |
"Id": 15, | |
"CreatedAt": "2020-06-23T10:38:36.549Z", |