2023-04-10 15:36:59 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2018-08-16 17:57:56 +00:00
|
|
|
import { clickable, isPresent, text } from 'ember-cli-page-object';
|
|
|
|
|
2021-12-28 14:45:20 +00:00
|
|
|
export default function (selectorBase = 'data-test-error') {
|
2018-08-16 17:57:56 +00:00
|
|
|
return {
|
|
|
|
scope: `[${selectorBase}]`,
|
|
|
|
isPresent: isPresent(),
|
|
|
|
title: text(`[${selectorBase}-title]`),
|
|
|
|
message: text(`[${selectorBase}-message]`),
|
|
|
|
seekHelp: clickable(`[${selectorBase}-message] a`),
|
|
|
|
};
|
|
|
|
}
|