skutter
Version:
Skutter: Opinionated BDD Browser based test framework
18 lines (17 loc) • 533 B
JavaScript
"use strict";
const definition_finder_1 = require("./definition-finder");
class Page {
constructor(pageName, pageUrl, title, structure, isAngular) {
this.name = "";
this.url = "";
this.title = "";
this.isAngularPage = false;
this.getDefinition = definition_finder_1.DefinitionFinder.getDefinition;
this.name = pageName;
this.url = pageUrl;
this.structure = structure;
this.title = title;
this.isAngularPage = isAngular;
}
}
exports.Page = Page;