log.info("Step:Click 'Add keyword' button in Keyword editor window. [Class#Method]");
21. JavaDoc for each method and whole class
/** * Class name and description * * @author * @version 1.0 * @since 26/12/2019 */
/** * Select Record in Table using row_id * * @param row_id - row id of the required row to select * @param columnName - column name * @throws FrameworkException */
22. Fluent builder pattern in each method: Return type is always class name
23. Configurations in environment.xml file
* Manage project configurations under **```environment.xml```** file, > - ```<embedded-mode></embedded-mode>``` **```: If 'ON' test project will support chromium emmberdard mode, if 'OFF' test project only support swing gui mode or pure web```** > - ```<app-mode></app-mode>``` **```: If 'GUI' test project support for pure swing or chrommium emmberdard mode, if 'WEB' test project support only for pure web application```** > - ```<dashboard>OFF</dashboard>``` **```: If 'OFF' while during the execution listeners will disable and not collect execution results for dashboard```**
24. chrome driver is located under the resources folder
25. log4j.xml file is located in the resources folder
26. Data input files like images and pdf are located in the resources folder
Comments
Post a Comment