15 lines
481 B
JavaScript
15 lines
481 B
JavaScript
const homePage = require("../../../locators/HomePage.json");
|
|
|
|
|
|
describe("Duplicate an application must duplicate every API ,Query widget and Datasource", function() {
|
|
it("Duplicating an application", function()
|
|
{
|
|
// Navigate to home Page
|
|
// Click on any application action icon (Three dots)
|
|
// Click on "Duplicate" option
|
|
// Ensure the application gets copied
|
|
// Ensure the name is appended with the word "Copy"
|
|
}
|
|
)
|
|
}
|
|
) |