@digital-ai/devops-page-object-deploy 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -204,17 +204,49 @@ declare class LoginPage extends WithPage {
204
204
  constructor(page: Page);
205
205
  login(user: string, pwd: string): Promise<void>;
206
206
  }
207
- declare class ApplicationMenu extends Menu {
207
+ declare class ApplicationUtil {
208
+ page: Page;
209
+ applicationPage: ApplicationPage;
210
+ constructor(page1: ApplicationPage, page: Page);
211
+ /**
212
+ * Create New directory under applications CI.
213
+ * @param appDirectoryName
214
+ * @param expectedCiType
215
+ */
216
+ createNewApplicationDirectory(appDirectoryName: string, expectedCiType: string): Promise<void>;
217
+ /**
218
+ * Create new application under Application ci
219
+ * @param appName
220
+ * @param expectedCiType
221
+ */
222
+ createNewApplication(appName: string, expectedCiType: string): Promise<void>;
223
+ /**
224
+ * TODO: It is half done just to check on menu path other than new. Need to create as per scenario.
225
+ */
226
+ createFromFileImport(): Promise<void>;
227
+ }
228
+ declare class Tab extends WithPage {
229
+ page: Page;
230
+ parentTabLocator: Locator;
231
+ getTabTitleLocator: Locator;
232
+ closeIcon: Locator;
233
+ constructor(page: Page);
234
+ assertActiveTabSelector(expectedCiType: string): Promise<void>;
235
+ closeActiveTabs(): Promise<void>;
236
+ }
237
+ declare class ExplorerMenu extends Menu {
208
238
  page: Page;
209
- newlinkLocator: Locator;
210
- importlinkLocator: Locator;
211
239
  applicationLocator: Locator;
212
- deleteLinkLocator: Locator;
240
+ environmentLocator: Locator;
213
241
  constructor(page: Page);
214
242
  /**
215
243
  * Click on application CI in contextual-menu option.
216
244
  */
217
245
  clickApplicationCi(): Promise<void>;
246
+ /**
247
+ * Click on application CI in contextual-menu option.
248
+ */
249
+ clickEnvironmentCi(): Promise<void>;
218
250
  /**
219
251
  * Click on menu items from contextual-menu option using path navigation option
220
252
  * @param path: Provide menu navigation path using array
@@ -226,13 +258,15 @@ declare class Form extends Section {
226
258
  constructor(mainContentRootLocator: Locator);
227
259
  fillTextInput(textInput: Locator, textValue: string): Promise<void>;
228
260
  }
229
- declare class ApplicationForm extends Form {
261
+ declare class ExplorerForm extends Form {
230
262
  page: Page;
231
263
  inputName: Locator;
232
264
  inputLatestVersion: Locator;
233
265
  saveButton: Locator;
234
266
  saveAndCloseButton: Locator;
235
267
  cancelButton: Locator;
268
+ errorMessage: Locator;
269
+ formSection: Locator;
236
270
  constructor(page: Page);
237
271
  /**
238
272
  * Enter name in name field of the application form
@@ -271,35 +305,48 @@ declare class ApplicationForm extends Form {
271
305
  * @returns
272
306
  */
273
307
  assertSaveAndCloseButtonIsDisabled(): Promise<void>;
274
- }
275
- declare class ApplicationUtil {
276
- page: Page;
277
- applicationPage: ApplicationPage;
278
- constructor(page1: ApplicationPage, page: Page);
279
- /**
280
- * Create New directory under applications CI.
281
- * @param appDirectoryName
282
- * @param expectedCiType
283
- */
284
- createNewApplicationDirectory(appDirectoryName: string, expectedCiType: string): Promise<void>;
285
308
  /**
286
- * Create new application under Application ci
287
- * @param appName
288
- * @param expectedCiType
309
+ * Verify Error message in the form
310
+ * @param errorMsg
311
+ * @returns
289
312
  */
290
- createNewApplication(appName: string, expectedCiType: string): Promise<void>;
313
+ verifyErrorMessage(errorMsg: string): Promise<void>;
291
314
  /**
292
- * TODO: It is half done just to check on menu path other than new. Need to create as per scenario.
315
+ * Verify field value in form using field name
316
+ * @param fieldName
317
+ * @param expectedValue
318
+ * @returns
293
319
  */
294
- createFromFileImport(): Promise<void>;
320
+ verifyFieldValue(fieldName: string, expectedValue: string): Promise<void>;
321
+ }
322
+ declare class Modal extends Section {
323
+ header: Locator;
324
+ body: Locator;
325
+ footer: Locator;
326
+ constructor(page: Page);
327
+ }
328
+ declare class ExplorerModal extends Modal {
329
+ deleteButton: Locator;
330
+ cancelButton: Locator;
331
+ constructor(page: Page);
332
+ clickDelete(): Promise<void>;
333
+ clickCancel(): Promise<void>;
334
+ }
335
+ declare class ExplorerUtil {
336
+ page: Page;
337
+ contextMenu: ExplorerMenu;
338
+ tab: Tab;
339
+ form: ExplorerForm;
340
+ modal: ExplorerModal;
341
+ constructor(page: Page);
295
342
  /**
296
- * Create new ci (application, package) under applications by providing following parameters.
343
+ * Create new ci under any explorer package by providing following parameters.
297
344
  * @param parentNodeId
298
345
  * @param menuPath
299
346
  * @param expectedCiType
300
- * @param appName
347
+ * @param fieldName
301
348
  */
302
- createNewCi(parentNodeId: string, menuPath: any, appName: string): Promise<void>;
349
+ createNewCi(parentNodeId: string, menuPath: any, fieldName: string): Promise<void>;
303
350
  /**
304
351
  * Expand the ci path tree toggler.
305
352
  * @param pathnode
@@ -320,41 +367,279 @@ declare class ApplicationUtil {
320
367
  * @param node
321
368
  */
322
369
  deleteCi(node: string): Promise<void>;
370
+ /**
371
+ * Click on specific node which is under Application CI.
372
+ * @param nodeId
373
+ */
374
+ clickNode(nodeId: string): Promise<void>;
375
+ /**
376
+ * Click on ci under any explorer package of contextual menus by providing following parameters.
377
+ * @param parentNodeId
378
+ * @param menuPath
379
+ * @param expectedCiType
380
+ * @param fieldName
381
+ */
382
+ clickCi(parentNodeId: string, menuPath: any, expectedCiType: string): Promise<void>;
323
383
  }
324
- declare class Tab extends WithPage {
384
+ declare class ApplicationForm extends Form {
325
385
  page: Page;
326
- parentTabLocator: Locator;
327
- getTabTitleLocator: Locator;
386
+ inputName: Locator;
387
+ inputLatestVersion: Locator;
388
+ saveButton: Locator;
389
+ saveAndCloseButton: Locator;
390
+ cancelButton: Locator;
391
+ formSection: Locator;
328
392
  constructor(page: Page);
329
- assertActiveTabSelector(expectedCiType: string): Promise<void>;
393
+ /**
394
+ * Enter name in name field of the application form
395
+ * @param name
396
+ * @returns
397
+ */
398
+ enterName(name: string): Promise<void>;
399
+ /**
400
+ * Enter latest version field
401
+ * @param version
402
+ * @returns
403
+ */
404
+ enterLatestVersion(version: string): Promise<void>;
405
+ /**
406
+ * Click save button
407
+ * @returns
408
+ */
409
+ clickSave(): Promise<void>;
410
+ /**
411
+ * Click save and close button
412
+ * @returns
413
+ */
414
+ clickSaveAndClose(): Promise<void>;
415
+ /**
416
+ * Click cancel button
417
+ * @returns
418
+ */
419
+ clickCancel(): Promise<void>;
420
+ /**
421
+ * Expecting save button is disabled
422
+ * @returns
423
+ */
424
+ assertSaveButtonIsDisabled(): Promise<void>;
425
+ /**
426
+ * Expecting Save and close button is disabled
427
+ * @returns
428
+ */
429
+ assertSaveAndCloseButtonIsDisabled(): Promise<void>;
330
430
  }
331
- declare class Modal extends Section {
332
- header: Locator;
333
- body: Locator;
334
- footer: Locator;
431
+ declare class ApplicationPage extends WithPage {
432
+ contextMenu: ExplorerMenu;
433
+ form: ExplorerForm;
434
+ tab: Tab;
435
+ modal: ExplorerModal;
436
+ commonUtil: ExplorerUtil;
437
+ util: ApplicationUtil;
438
+ appForm: ApplicationForm;
335
439
  constructor(page: Page);
336
440
  }
337
- declare class ApplicationModal extends Modal {
338
- deleteButton: Locator;
441
+ declare class HomePage extends WithPage {
442
+ constructor(page: Page);
443
+ }
444
+ declare class ConfigurationForm extends Form {
445
+ page: Page;
446
+ inputName: Locator;
447
+ inputLatestVersion: Locator;
448
+ saveButton: Locator;
449
+ saveAndCloseButton: Locator;
339
450
  cancelButton: Locator;
451
+ inputHost: Locator;
452
+ inputPort: Locator;
453
+ inputUsername: Locator;
454
+ inputPassword: Locator;
455
+ inputFromAddress: Locator;
456
+ inputTestAddress: Locator;
457
+ inputHostName: Locator;
340
458
  constructor(page: Page);
341
- clickDelete(): Promise<void>;
459
+ /**
460
+ * Enter name in name field of the configuration form
461
+ * @param name
462
+ * @returns
463
+ */
464
+ enterName(name: string): Promise<void>;
465
+ /**
466
+ * Enter latest version field
467
+ * @param version
468
+ * @returns
469
+ */
470
+ enterLatestVersion(version: string): Promise<void>;
471
+ /**
472
+ * Click save button
473
+ * @returns
474
+ */
475
+ clickSave(): Promise<void>;
476
+ /**
477
+ * Click save and close button
478
+ * @returns
479
+ */
480
+ clickSaveAndClose(): Promise<void>;
481
+ /**
482
+ * Click cancel button
483
+ * @returns
484
+ */
485
+ clickCancel(): Promise<void>;
486
+ /**
487
+ * Expecting save button is disabled
488
+ * @returns
489
+ */
490
+ assertSaveButtonIsDisabled(): Promise<void>;
491
+ /**
492
+ * Expecting Save and close button is disabled
493
+ * @returns
494
+ */
495
+ assertSaveAndCloseButtonIsDisabled(): Promise<void>;
496
+ /**
497
+ * Expecting field value with its field name
498
+ * @param fieldName
499
+ * @param value
500
+ * @returns
501
+ */
502
+ expectFieldValue(fieldName: string, value: string): Promise<void>;
503
+ /**
504
+ * Set Host value to the Host field in configuration form
505
+ * @param host
506
+ * @returns
507
+ */
508
+ setHostValue(host: string): Promise<void>;
509
+ /**
510
+ * Setting port value in the configuration form
511
+ * @param port
512
+ * @returns
513
+ */
514
+ setPortValue(port: string): Promise<void>;
515
+ /**
516
+ * Setting from Address field value in configuration form
517
+ * @param address
518
+ * @returns
519
+ */
520
+ setFromAddress(address: string): Promise<void>;
521
+ /**
522
+ * Setting username in configuration form
523
+ * @param username
524
+ * @returns
525
+ */
526
+ setUserName(username: string): Promise<void>;
527
+ /**
528
+ * Setting password in configuration form
529
+ * @param password
530
+ * @returns
531
+ */
532
+ setPassword(password: string): Promise<void>;
533
+ /**
534
+ * Setting host name in configuration form
535
+ * @param hostname
536
+ * @returns
537
+ */
538
+ setHostName(hostname: string): Promise<void>;
539
+ }
540
+ declare class ConfigurationUtil {
541
+ page: Page;
542
+ configPage: ConfigurationPage;
543
+ constructor(page1: ConfigurationPage, page: Page);
544
+ }
545
+ declare class ConfigurationPage extends WithPage {
546
+ contextMenu: ExplorerMenu;
547
+ form: ExplorerForm;
548
+ tab: Tab;
549
+ modal: ExplorerModal;
550
+ commonUtil: ExplorerUtil;
551
+ configForm: ConfigurationForm;
552
+ util: ConfigurationUtil;
553
+ constructor(page: Page);
554
+ }
555
+ declare class EnvironmentForm extends Form {
556
+ page: Page;
557
+ formSection: Locator;
558
+ inputName: Locator;
559
+ inputLatestVersion: Locator;
560
+ saveButton: Locator;
561
+ saveAndCloseButton: Locator;
562
+ cancelButton: Locator;
563
+ inputVersion: Locator;
564
+ constructor(page: Page);
565
+ /**
566
+ * Expect the label text is available in form.
567
+ * @param label
568
+ */
569
+ assertLabelText(label: string): Promise<void>;
570
+ /**
571
+ * Enter name in name field of the application form
572
+ * @param name
573
+ * @returns
574
+ */
575
+ enterName(name: string): Promise<void>;
576
+ /**
577
+ * Enter latest version field
578
+ * @param version
579
+ * @returns
580
+ */
581
+ enterLatestVersion(version: string): Promise<void>;
582
+ /**
583
+ * Click save button
584
+ * @returns
585
+ */
586
+ clickSave(): Promise<void>;
587
+ /**
588
+ * Click save and close button
589
+ * @returns
590
+ */
591
+ clickSaveAndClose(): Promise<void>;
592
+ /**
593
+ * Click cancel button
594
+ * @returns
595
+ */
342
596
  clickCancel(): Promise<void>;
597
+ /**
598
+ * Expecting save button is disabled
599
+ * @returns
600
+ */
601
+ assertSaveButtonIsDisabled(): Promise<void>;
602
+ /**
603
+ * Expecting Save and close button is disabled
604
+ * @returns
605
+ */
606
+ assertSaveAndCloseButtonIsDisabled(): Promise<void>;
607
+ /**
608
+ * Enter options in the input field of dropdown to match with suggestion list in form
609
+ * @param fieldName
610
+ * @param value
611
+ */
612
+ selectVersionOption(fieldName: string, value: string): Promise<void>;
343
613
  }
344
- declare class ApplicationPage extends WithPage {
345
- appMenu: ApplicationMenu;
346
- appForm: ApplicationForm;
614
+ declare class EnvironmentUtil {
615
+ page: Page;
616
+ environmentPage: EnvironmentPage;
617
+ constructor(page1: EnvironmentPage, page: Page);
618
+ }
619
+ declare class EnvironmentPage extends WithPage {
620
+ contextMenu: ExplorerMenu;
621
+ form: ExplorerForm;
347
622
  tab: Tab;
348
- util: ApplicationUtil;
349
- appModal: ApplicationModal;
623
+ modal: ExplorerModal;
624
+ commonUtil: ExplorerUtil;
625
+ envForm: EnvironmentForm;
626
+ util: EnvironmentUtil;
350
627
  constructor(page: Page);
351
628
  }
352
- declare class HomePage extends WithPage {
629
+ declare class InfraPage extends WithPage {
630
+ contextMenu: ExplorerMenu;
631
+ form: ExplorerForm;
632
+ tab: Tab;
633
+ modal: ExplorerModal;
634
+ commonUtil: ExplorerUtil;
353
635
  constructor(page: Page);
354
636
  }
355
637
  type deployFixtures = {
356
638
  applicationPage: ApplicationPage;
639
+ configurePage: ConfigurationPage;
640
+ environmentPage: EnvironmentPage;
357
641
  homePage: HomePage;
642
+ infraPage: InfraPage;
358
643
  loginPage: LoginPage;
359
644
  tab: Tab;
360
645
  };