jdi-testing / jdn

0 stars 2 forks source link

JND Template: the changing "nameCase": and "typeCase": doesn't affect the generated PO files as expected #37

Open SSN-SPB opened 4 years ago

SSN-SPB commented 4 years ago

1) Open JDN plugin; Generate subtab and open Setting menu by pressing Cogwheel sub-button new 'Generate' button

2) Navigate to HomePage and create and download the set of PO files

3) Download an existing template by clicking the corresponding button in Rule subtab: this moment 'Export' 4) Make copy of downloaded file jdiLightTemplate.json 5) Update the copy as follow:

from "nameCase": "camelCase", "typeCase": "PascalCase", to

"nameCase": "PascalCase",
"typeCase": "camelCase",

6) Upload new template by clicking the corresponding button in Generate subtab: this moment 'Import' 7) Navigate to HomePage and create and download the set of PO files

8) Compare downloaded PO files

Expected The locators in the page object files are updated as follow e.g. within HomePage.java the line

@UI("header") public Header header;

is modified to: @UI("header") public header Header;

Actual: No changing

SSN-SPB commented 4 years ago

Blocked by https://github.com/jdi-testing/jdn/issues/67