27bb03bbc0
* adding copyright header * fix fmt and a test
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { clickable, collection, fillable, text, value, attribute } from 'ember-cli-page-object';
|
|
import fields from './form-field';
|
|
import errorText from './alert-banner';
|
|
|
|
export default {
|
|
...fields,
|
|
...errorText,
|
|
header: text('[data-test-mount-form-header]'),
|
|
submit: clickable('[data-test-mount-submit]'),
|
|
next: clickable('[data-test-mount-next]'),
|
|
back: clickable('[data-test-mount-back]'),
|
|
path: fillable('[data-test-input="path"]'),
|
|
toggleOptions: clickable('[data-test-toggle-group="Method Options"]'),
|
|
pathValue: value('[data-test-input="path"]'),
|
|
types: collection('[data-test-mount-type-radio] input', {
|
|
select: clickable(),
|
|
id: attribute('id'),
|
|
}),
|
|
type: fillable('[name="mount-type"]'),
|
|
async selectType(type) {
|
|
return this.types.filterBy('id', type)[0].select();
|
|
},
|
|
async mount(type, path) {
|
|
await this.selectType(type);
|
|
if (path) {
|
|
await this.next().path(path).submit();
|
|
} else {
|
|
await this.next().submit();
|
|
}
|
|
},
|
|
};
|