import { Form } from '../../e2elib/lib/src/pageobjects/form.component';
|
import { Chart } from '../../e2elib/lib/src/pageobjects/chart/chart.component';
|
import { DropDownListSOP } from '../../libappsop/dropdownlistsop';
|
|
export class FormCost extends Form {
|
|
public chartCost = new Chart('DashboardChartSenarioAnalysisCostPerPeriod');
|
public drpdAccount = new DropDownListSOP('DropDownListAccount');
|
|
public constructor() {
|
super('FormScenarioAnalysisCosts');
|
}
|
}
|