Fixed some bugs in subscription process
Added timezone selector to campaign scheduling Fixed problems with pausing campaign.
This commit is contained in:
parent
4113cb8476
commit
e3a5a3c4eb
23 changed files with 218 additions and 99 deletions
|
@ -1,9 +1,11 @@
|
|||
'use strict';
|
||||
|
||||
const config = require('../lib/config');
|
||||
const web = require('../lib/web');
|
||||
|
||||
module.exports = {
|
||||
login: web({
|
||||
baseUrl: config.baseTrustedUrl,
|
||||
url: '/users/login',
|
||||
elementsToWaitFor: ['submitButton'],
|
||||
elements: {
|
||||
|
@ -14,11 +16,13 @@ module.exports = {
|
|||
}),
|
||||
|
||||
logout: web({
|
||||
baseUrl: config.baseTrustedUrl,
|
||||
requestUrl: '/users/logout',
|
||||
url: '/'
|
||||
}),
|
||||
|
||||
account: web({
|
||||
baseUrl: config.baseTrustedUrl,
|
||||
url: '/users/account',
|
||||
elementsToWaitFor: ['form'],
|
||||
elements: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue