We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The changing the jdiLightTemplate.json as folow: from { "package": "", "siteName": "",
to { "package": "UPPER_CASE_SNAKE_CASE", "siteName": "",
affects the downloaded PO files as follow:
New actual header of the generated PO file
.. package UPPER_CASE_SNAKE_CASE.pages;
import com.epam.jdi.light.elements.pageobjects.annotations.locators.; import com.epam.jdi.light.elements.composite.; import com.epam.jdi.light.elements.complex.; import com.epam.jdi.light.elements.common.; import com.epam.jdi.light.elements.complex.dropdown.; import com.epam.jdi.light.elements.complex.table.; import com.epam.jdi.light.ui.html.elements.complex.; import com.epam.jdi.light.ui.html.elements.common.; import UPPER_CASE_SNAKE_CASE.sections.*;
..
The initial header of the generated PO file
package io.github.jditesting.pages;
import com.epam.jdi.light.elements.pageobjects.annotations.locators.; import com.epam.jdi.light.elements.composite.; import com.epam.jdi.light.elements.complex.; import com.epam.jdi.light.elements.common.; import com.epam.jdi.light.elements.complex.dropdown.; import com.epam.jdi.light.elements.complex.table.; import com.epam.jdi.light.ui.html.elements.complex.; import com.epam.jdi.light.ui.html.elements.common.; import io.github.jditesting.sections.*;
Expected: changing either ignored or affects the PO file as expected
The text was updated successfully, but these errors were encountered:
Blocked by #67
Sorry, something went wrong.
No branches or pull requests
The changing the jdiLightTemplate.json as folow:
from
{
"package": "",
"siteName": "",
to
{
"package": "UPPER_CASE_SNAKE_CASE",
"siteName": "",
affects the downloaded PO files as follow:
New actual header of the generated PO file
..
package UPPER_CASE_SNAKE_CASE.pages;
import com.epam.jdi.light.elements.pageobjects.annotations.locators.;
import com.epam.jdi.light.elements.composite.;
import com.epam.jdi.light.elements.complex.;
import com.epam.jdi.light.elements.common.;
import com.epam.jdi.light.elements.complex.dropdown.;
import com.epam.jdi.light.elements.complex.table.;
import com.epam.jdi.light.ui.html.elements.complex.;
import com.epam.jdi.light.ui.html.elements.common.;
import UPPER_CASE_SNAKE_CASE.sections.*;
..
The initial header of the generated PO file
package io.github.jditesting.pages;
import com.epam.jdi.light.elements.pageobjects.annotations.locators.;
import com.epam.jdi.light.elements.composite.;
import com.epam.jdi.light.elements.complex.;
import com.epam.jdi.light.elements.common.;
import com.epam.jdi.light.elements.complex.dropdown.;
import com.epam.jdi.light.elements.complex.table.;
import com.epam.jdi.light.ui.html.elements.complex.;
import com.epam.jdi.light.ui.html.elements.common.;
import io.github.jditesting.sections.*;
Expected: changing either ignored or affects the PO file as expected
The text was updated successfully, but these errors were encountered: