You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Template files for the qa package in frontier for generating page objects should be updated. The file should be updated to have the following content:
// All imports go here
// Importing Base Page Object
import Page from './page';
/**
* Page containing specific selectors and methods for a specific page
*/
class <PageObject> extends Page {
/**
* Selectors
* Define selectors in this section using getter methods
*/
/**
* Functions
* Define functions for different methods that can be carried out on the page
*/
}
const <pagename> = new <PageObject>();
export { <pagename> as default, pagename as <PageObject> };
The method for scaffolding the page object should be updated to ensure the correct template strings have been updated.
The text was updated successfully, but these errors were encountered:
Template files for the qa package in frontier for generating page objects should be updated. The file should be updated to have the following content:
The method for scaffolding the page object should be updated to ensure the correct template strings have been updated.
The text was updated successfully, but these errors were encountered: