SUSE/stratos

View on GitHub
src/test-e2e/po/action-monitor.po.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { by, element } from 'protractor';

import { Component } from './component.po';
import { ListTableComponent } from './list.po';

export class ActionMonitorComponent extends Component {

  table: ListTableComponent;

  constructor(locator = element(by.css('app-action-monitor'))) {
    super(locator);
    this.table = new ListTableComponent(this.locator);
  }
}