Buenos dias , alguna vez alguien habra visto este error por favor , despues de ejecutar el comando npx codeceptjs run --steps , me sale el siguiente msj , llevo 2 dias sin poder resolverlo , Muchas gracias de antemano :
/*jshint esversion: 6 */
const I = actor();
let retry = { retries: 3, minTimeout: 9000 };
module.exports = {
// insert your locators
fields: {
//CmbMarca: { xpath: ‘//[@id=“brand”]/div/label’ },
//CmbCategoria: { xpath: '//[@id=“categoria”]/div/label’ },
//CmbTipodeproyecto: { xpath: ‘//[@id=“tipoproyecto”]/div/label’ },
//CmbAniodelanzamiento: { xpath: '//[@id=“aniolanzamiento”]/div/label’ },
Buscarnameproyecto: { xpath: ‘//*[@id=“filtro”]’ },
//Tipodeproyecto: { xpath: ‘/html/body/app-root/app-home/app-project-list/div/p-table/div/div/div/div[2]/table/tbody/tr[1]/td[2]’ },
cmbProductonuevo: { xpath: ‘/html/body/app-root/app-home/app-project-list/div/p-table/div/div/div/div[2]/table/tbody/tr[1]/td[2]’ },
TxtDescripcion: { xpath: ‘/html/body/app-root/app-home/app-project-list/div/p-table/div/div/div/div[2]/table/tbody/tr[1]/td[3]/span/font/font’ },
},
//methods here
async goToBuscarproyectos(Buscarproyectos) {
I.retry(wait).click(this.fields.Buscarnameproyecto);
I.waitWhenVisibleSelectValue(this.fields.SelectorContent, Buscarproyectos);
I.retry(wait).waitForNavigation(2);
I.wait(2);
I.pressKey("Enter");
//I.wait(10)
},
async goToViewTipodeproyecto(ColumnaTipodeproyecto)
{
I.wait(5);
//metodo para escoger el combo producto nuevo
I.retry(wait).click(this.fields.cmbProductonuevo);
I.waitWhenVisibleSelectValue(this.fields.SelectorContent, ColumnaTipodeproyecto);
},
async MensajeCorfimacion() {
I.wait(3);
I.retry(retry).see('El proyecto se actualizo correctamente');
I.wait(10);
},
async Escogerproyecto(descripciontipodeproyecto) {
I.wait(3);
I.retry(retry).scrollTo(this.fields.TxtDescripcion);
I.retry(retry).doubleClick(this.fields.TxtDescripcion);
I.retry(retry).fillField(this.fields.TxtDescripcion, descripciontipodeproyecto);
I.wait(15);
},
};
el msj de error muestra lo siguiente :
"Could not include object Step Definition from ./src/features/Novoapp/Crear/DefinirVariable/DefinirVariable.steps.js from module ‘d:\automatizacion hundred\novoapp\codeceptjs\src\features\Novoapp\Crear\DefinirVariable\DefinirVariable.steps.js’
async is not defined "