decide.nolog.cz/tests/pages/poll.js
sappor0 c23ba1f6fb Using bootstrap 4 and related UI refresh (#205)
Changes at a glance:

- Switch from BS3 to BS4
- Polishing of some UI elements (low-hanging fruit for UX)
- Mobile-friendly layout.
2019-06-07 11:22:13 +02:00

20 lines
494 B
JavaScript

import {
create,
isVisible,
text
} from 'ember-cli-page-object';
import { currentURL } from '@ember/test-helpers';
const urlMatches = function(regExp) {
return function() {
return regExp.test(currentURL());
};
};
export const definition = {
showsExpirationWarning: isVisible('.expiration-warning'),
url: text('.poll-link .link code'),
urlIsValid: urlMatches(/^\/poll\/[a-zA-Z0-9]{10}\/participation\?encryptionKey=[a-zA-Z0-9]{40}$/)
};
export default create(definition);