test: Script updates for flaky fixes (#16350)
* Table adding more wait time * theme multiselect trial fix * Ds form spec flaky fix * TableV2 filter spec - app crash fix * theme multiselect flaky fix * ds form spec + community issues flaky fix * spinner validatio added * Theme_multiselect fix * Json query run flaky fix * DS add click flaky fix * ds + locator update * Skipping upgrade tests until fix * Arango flaky fix * Mongo.js flaky fix * MySql CRud spec time increase * ReadTableRowColumnData timeout increase
This commit is contained in:
parent
e60375cd02
commit
f627b1ea8b
|
|
@ -22,9 +22,6 @@ describe("PgAdmin Clone App", function() {
|
|||
// authenticating datasource
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
|
||||
cy.fillPostgresDatasourceForm();
|
||||
|
||||
cy.testSaveDatasource();
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ describe("Binding the multiple widgets and validating default data", function()
|
|||
it("1. Create a postgres datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillPostgresDatasourceForm();
|
||||
cy.testSaveDatasource();
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@ describe("Entity explorer tests related to copy query", function() {
|
|||
cy.wait(2000);
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillPostgresDatasourceForm();
|
||||
cy.testSaveDatasource();
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ describe("Entity explorer tests related to query and datasource", function() {
|
|||
cy.wait(2000);
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillPostgresDatasourceForm();
|
||||
|
||||
// checking that conflicting names are not allowed
|
||||
|
|
|
|||
|
|
@ -17,9 +17,6 @@ describe("Git discard changes:", function() {
|
|||
// Create new postgres datasource
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
|
||||
cy.fillPostgresDatasourceForm();
|
||||
|
||||
cy.testSaveDatasource();
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
const commonlocators = require("../../../../locators/commonlocators.json");
|
||||
const explorer = require("../../../../locators/explorerlocators.json");
|
||||
const themelocator = require("../../../../locators/ThemeLocators.json");
|
||||
import { ObjectsRegistry } from "../../../../support/Objects/Registry";
|
||||
|
||||
let themeBackgroudColor;
|
||||
let themeFont;
|
||||
let themeColour;
|
||||
let propPane = ObjectsRegistry.PropertyPane;
|
||||
|
||||
describe("Theme validation usecase for multi-select widget", function() {
|
||||
it("Drag and drop multi-select widget and validate Default font and list of font validation + Bug 15007", function() {
|
||||
|
|
@ -23,7 +25,7 @@ describe("Theme validation usecase for multi-select widget", function() {
|
|||
"response.body.responseMeta.status",
|
||||
200,
|
||||
);
|
||||
cy.wait(3000);
|
||||
cy.wait(1000);
|
||||
cy.get(themelocator.canvas).click({ force: true });
|
||||
cy.wait(2000);
|
||||
|
||||
|
|
@ -41,7 +43,7 @@ describe("Theme validation usecase for multi-select widget", function() {
|
|||
"response.body.responseMeta.status",
|
||||
200,
|
||||
);
|
||||
cy.wait(3000);
|
||||
cy.wait(1000);
|
||||
cy.contains("Border").click({ force: true });
|
||||
|
||||
//Shadow validation
|
||||
|
|
@ -59,7 +61,7 @@ describe("Theme validation usecase for multi-select widget", function() {
|
|||
"response.body.responseMeta.status",
|
||||
200,
|
||||
);
|
||||
cy.wait(5000);
|
||||
cy.wait(1000);
|
||||
cy.contains("Shadow").click({ force: true });
|
||||
|
||||
//Font
|
||||
|
|
@ -93,27 +95,17 @@ describe("Theme validation usecase for multi-select widget", function() {
|
|||
.text();
|
||||
});
|
||||
});
|
||||
//cy.contains("Font").click({ force: true });
|
||||
cy.contains("Font").click({ force: true });
|
||||
|
||||
//Color
|
||||
cy.wait(3000);
|
||||
cy.get(themelocator.inputColor)
|
||||
.clear()
|
||||
.wait(200)
|
||||
.click()
|
||||
.type("purple");
|
||||
cy.wait(1000);
|
||||
propPane.ChangeColor("purple", "Primary");
|
||||
cy.get(themelocator.inputColor).should("have.value", "purple");
|
||||
cy.get(themelocator.color)
|
||||
.eq(1)
|
||||
.click({ force: true });
|
||||
cy.wait(2000);
|
||||
cy.get(themelocator.inputColor)
|
||||
.clear()
|
||||
.wait(200)
|
||||
.click()
|
||||
.type("brown");
|
||||
cy.wait(1000);
|
||||
|
||||
propPane.ChangeColor("brown", "Background");
|
||||
cy.get(themelocator.inputColor).should("have.value", "brown");
|
||||
cy.wait(2000);
|
||||
cy.wait(1000);
|
||||
cy.contains("Color").click({ force: true });
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ import {
|
|||
WIDGET,
|
||||
PROPERTY_SELECTOR,
|
||||
getWidgetSelector,
|
||||
getWidgetInputSelector,
|
||||
} from "../../../../locators/WidgetLocators";
|
||||
import { ObjectsRegistry } from "../../../../support/Objects/Registry";
|
||||
|
||||
|
|
@ -643,6 +643,7 @@ describe("Verify various Table_Filter combinations", function() {
|
|||
|
||||
it("30. Import TableFilter application & verify all filters for same FirstName (one word column) + Bug 13334", () => {
|
||||
deployMode.NavigateBacktoEditor();
|
||||
table.WaitUntilTableLoad();
|
||||
homePage.NavigateToHome();
|
||||
homePage.ImportApp("Table/TableFilterImportApp.json");
|
||||
homePage.AssertImportToast();
|
||||
|
|
|
|||
|
|
@ -14,10 +14,9 @@ describe("Arango datasource test cases", function() {
|
|||
});
|
||||
|
||||
it("1. Create, test, save then delete a Arango datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.ArangoDB).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.renameDatasource("ArangoWithnoTrailing");
|
||||
dataSources.NavigateToDSCreateNew();
|
||||
dataSources.CreatePlugIn("ArangoDB");
|
||||
agHelper.RenameWithInPane("ArangoWithnoTrailing", false);
|
||||
cy.fillArangoDBDatasourceForm();
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
@ -30,10 +29,9 @@ describe("Arango datasource test cases", function() {
|
|||
});
|
||||
|
||||
it("2. Create with trailing white spaces in host address and database name, test, save then delete a Arango datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.ArangoDB).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.renameDatasource("ArangoWithTrailing");
|
||||
dataSources.NavigateToDSCreateNew();
|
||||
dataSources.CreatePlugIn("ArangoDB");
|
||||
agHelper.RenameWithInPane("ArangoWithTrailing", false);
|
||||
cy.fillArangoDBDatasourceForm(true);
|
||||
cy.intercept("POST", "/api/v1/datasources/test", {
|
||||
fixture: "testAction.json",
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ describe("Datasource form related tests", function() {
|
|||
|
||||
it("1. Check whether the delete button has the right color", function() {
|
||||
cy.NavigateToAPI_Panel();
|
||||
cy.CreateAPI("Testapi");
|
||||
cy.CreateAPI(); //Not giving name to enable for cypress re-attempt
|
||||
cy.enterDatasourceAndPath(testdata.baseUrl, testdata.methods);
|
||||
|
||||
cy.get(".t--store-as-datasource")
|
||||
|
|
@ -31,11 +31,11 @@ describe("Datasource form related tests", function() {
|
|||
it("3. Check if saved api as a datasource does not fail on cloning", function() {
|
||||
cy.NavigateToAPI_Panel();
|
||||
cy.get(".t--entity-name")
|
||||
.contains("Testapi")
|
||||
.contains("Api")
|
||||
.trigger("mouseover");
|
||||
cy.hoverAndClickParticularIndex(1);
|
||||
cy.get('.single-select:contains("Copy to page")').click();
|
||||
cy.get('.single-select:contains("Page1")').click({ force: true });
|
||||
cy.validateToastMessage("Testapi action copied to page Page1 successfully");
|
||||
cy.validateToastMessage("action copied to page Page1 successfully");
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ describe("Create, test, save then delete a mongo datasource", function() {
|
|||
it("Create, test, save then delete a mongo datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MongoDB).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMongoDatasourceForm();
|
||||
cy.testSaveDeleteDatasource();
|
||||
});
|
||||
|
|
@ -16,7 +15,6 @@ describe("Create, test, save then delete a mongo datasource", function() {
|
|||
it("Create with trailing white spaces in host address and database name, test, save then delete a mongo datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MongoDB).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMongoDatasourceForm(true); //fills form with trailing white spaces
|
||||
cy.testSaveDeleteDatasource();
|
||||
});
|
||||
|
|
|
|||
|
|
@ -11,8 +11,6 @@ describe("MsSQL datasource test cases", function() {
|
|||
it("1. Create, test, save then delete a MsSQL datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MsSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
|
||||
cy.fillMsSQLDatasourceForm();
|
||||
cy.generateUUID().then((UUID) => {
|
||||
datasourceName = `MsSQL MOCKDS ${UUID}`;
|
||||
|
|
@ -31,7 +29,6 @@ describe("MsSQL datasource test cases", function() {
|
|||
it("2. Create with trailing white spaces in host address and database name, test, save then delete a MsSQL datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MsSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMsSQLDatasourceForm(true);
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
|
|||
|
|
@ -12,8 +12,6 @@ describe("MySQL datasource test cases", function() {
|
|||
it("1. Create, test, save then delete a MySQL datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MySQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
|
||||
cy.fillMySQLDatasourceForm();
|
||||
cy.generateUUID().then((UUID) => {
|
||||
datasourceName = `MySQL MOCKDS ${UUID}`;
|
||||
|
|
@ -32,7 +30,6 @@ describe("MySQL datasource test cases", function() {
|
|||
it("2. Create with trailing white spaces in host address and database name, test, save then delete a MySQL datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MySQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMySQLDatasourceForm(true);
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ describe("MySQL noise test", function() {
|
|||
.type(datasourceName, { force: true })
|
||||
.should("have.value", datasourceName)
|
||||
.blur();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMySQLDatasourceForm();
|
||||
cy.testSaveDatasource();
|
||||
cy.NavigateToActiveDSQueryPane(datasourceName);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ describe("MySQL datasource test cases", function() {
|
|||
it("1. Create, test, save then delete a MySQL datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MySQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMySQLDatasourceForm();
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
@ -23,7 +22,6 @@ describe("MySQL datasource test cases", function() {
|
|||
it("2. Create with trailing white spaces in host address and database name, test, save then delete a MySQL datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MySQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMySQLDatasourceForm(true);
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ describe("Postgres datasource test cases", function() {
|
|||
it("1. Create, test, save then delete a postgres datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillPostgresDatasourceForm();
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
@ -23,7 +22,6 @@ describe("Postgres datasource test cases", function() {
|
|||
it("2. Create with trailing white spaces in host address and database name, test, save then delete a postgres datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillPostgresDatasourceForm(true);
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
|
|||
|
|
@ -12,8 +12,6 @@ describe("Redshift datasource test cases", function() {
|
|||
it("1. Create, test, save then delete a Redshift datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.Redshift).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
|
||||
cy.fillRedshiftDatasourceForm();
|
||||
cy.generateUUID().then((UUID) => {
|
||||
datasourceName = `Redshift MOCKDS ${UUID}`;
|
||||
|
|
@ -32,7 +30,6 @@ describe("Redshift datasource test cases", function() {
|
|||
it("2. Create with trailing white spaces in host address and database name, test, save then delete a Redshift datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.Redshift).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillRedshiftDatasourceForm(true);
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
datasourceName = httpResponse.response.body.data.name;
|
||||
|
|
|
|||
|
|
@ -26,7 +26,6 @@ describe("SMTP datasource test cases using ted", function() {
|
|||
.should("have.value", SMTPDatasourceName)
|
||||
.blur();
|
||||
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillSMTPDatasourceForm();
|
||||
cy.testSaveDatasource();
|
||||
cy.NavigateToActiveDSQueryPane(SMTPDatasourceName);
|
||||
|
|
@ -111,7 +110,7 @@ describe("SMTP datasource test cases using ted", function() {
|
|||
cy.get(".bp3-spinner").should("have.length", 1);
|
||||
//eslint-disable-next-line cypress/no-unnecessary-waiting
|
||||
cy.wait(500);
|
||||
cy.get("button").contains("1 files selected");
|
||||
cy.get("button").contains("1 files selected");
|
||||
cy.xpath(
|
||||
"//span[text()='Run query' and @class='bp3-button-text']",
|
||||
).click();
|
||||
|
|
|
|||
|
|
@ -608,7 +608,7 @@ describe("Validate MySQL Generate CRUD with JSON Form", () => {
|
|||
|
||||
//Validating loaded table
|
||||
agHelper.AssertElementExist(dataSources._selectedRow);
|
||||
table.ReadTableRowColumnData(0, 0, 2500).then(($cellData) => {
|
||||
table.ReadTableRowColumnData(0, 0, 4000).then(($cellData) => {
|
||||
expect($cellData).to.eq(col1Text);
|
||||
});
|
||||
table.ReadTableRowColumnData(0, 1, 200).then(($cellData) => {
|
||||
|
|
|
|||
|
|
@ -766,7 +766,8 @@ describe("Validate Postgres Generate CRUD with JSON Form", () => {
|
|||
) {
|
||||
agHelper.ClickButton("Update"); //Update does not work, Bug 14063
|
||||
agHelper.AssertElementAbsence(locator._toastMsg); //Validating fix for Bug 14063 - for common table columns
|
||||
agHelper.Sleep(2000); //for update to reflect!
|
||||
//agHelper.Sleep(2000); //for update to reflect!
|
||||
agHelper.WaitUntilEleDisappear(locator._spinner);
|
||||
agHelper.ValidateNetworkStatus("@postExecute", 200);
|
||||
agHelper.ValidateNetworkStatus("@postExecute", 200);
|
||||
table.AssertSelectedRow(rowIndex); //Validate Primary key column selection
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ describe("API Panel Test Functionality", function() {
|
|||
it("1. Create a postgres datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.PostgreSQL).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillPostgresDatasourceForm();
|
||||
cy.testSaveDatasource();
|
||||
cy.get("@createDatasource").then((httpResponse) => {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@ describe("Create a query with a mongo datasource, run, save and then delete the
|
|||
it("1. Creates a new Mongo datasource", function() {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasource.MongoDB).click();
|
||||
cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillMongoDatasourceForm();
|
||||
cy.generateUUID().then((uid) => {
|
||||
datasourceName = `Mongo CRUD ds ${uid}`;
|
||||
|
|
@ -295,6 +294,7 @@ describe("Create a query with a mongo datasource, run, save and then delete the
|
|||
});
|
||||
|
||||
cy.onlyQueryRun();
|
||||
cy.wait(1000);
|
||||
cy.wait("@postExecute").then(({ response }) => {
|
||||
expect(response.body.data.isExecutionSuccess).to.eq(true);
|
||||
expect(response.body.data.body[0]._id).to.eq(
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const testdata = require("../../../../fixtures/testdata.json");
|
|||
|
||||
const testUrl = "http://localhost:5001/v1/parent/cmd";
|
||||
describe("Upgrade appsmith version", () => {
|
||||
it("Upgrade Appsmith version and verify the Applications", () => {
|
||||
it.skip("Upgrade Appsmith version and verify the Applications", () => {
|
||||
const uuid = () => Cypress._.random(0, 10000);
|
||||
const name = uuid();
|
||||
cy.wait(2000);
|
||||
|
|
@ -60,7 +60,7 @@ describe("Upgrade appsmith version", () => {
|
|||
cy.wait(2000);
|
||||
});
|
||||
|
||||
it("Upgrade Appsmith from CE to EE and verify the Applications", () => {
|
||||
it.skip("Upgrade Appsmith from CE to EE and verify the Applications", () => {
|
||||
cy.log("Stop the appsmith container");
|
||||
cy.StopTheContainer(testUrl, "appsmith"); // stop the old container
|
||||
cy.wait(2000);
|
||||
|
|
|
|||
|
|
@ -432,6 +432,7 @@ export class AggregateHelper {
|
|||
: cy.get(selector);
|
||||
return locator
|
||||
.eq(index)
|
||||
.scrollIntoView()
|
||||
.click({ force: force })
|
||||
.wait(waitTimeInterval);
|
||||
}
|
||||
|
|
@ -688,6 +689,18 @@ export class AggregateHelper {
|
|||
});
|
||||
}
|
||||
|
||||
public UpdateInput(selector: string, value: string) {
|
||||
this.GetElement(selector)
|
||||
.find("input")
|
||||
.then((ins: any) => {
|
||||
//const input = ins[0].input;
|
||||
ins.focus();
|
||||
this.Sleep(200);
|
||||
ins.val(value);
|
||||
this.Sleep(200);
|
||||
});
|
||||
}
|
||||
|
||||
public BlurCodeInput(selector: string) {
|
||||
cy.wrap(selector)
|
||||
.find(".CodeMirror")
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ export class DataSources {
|
|||
private locator = ObjectsRegistry.CommonLocators;
|
||||
|
||||
private _dsCreateNewTab = "[data-cy=t--tab-CREATE_NEW]";
|
||||
private _addNewDataSource = ".datasources .t--entity-add-btn";
|
||||
private _addNewDataSource = ".t--entity-add-btn.datasources";
|
||||
private _createNewPlgin = (pluginName: string) =>
|
||||
".t--plugin-name:contains('" + pluginName + "')";
|
||||
private _host = "input[name='datasourceConfiguration.endpoints[0].host']";
|
||||
|
|
@ -186,11 +186,7 @@ export class DataSources {
|
|||
}
|
||||
|
||||
public NavigateToDSCreateNew() {
|
||||
cy.get(this._addNewDataSource)
|
||||
.last()
|
||||
.scrollIntoView()
|
||||
.should("be.visible")
|
||||
.click({ force: true });
|
||||
this.agHelper.GetNClick(this._addNewDataSource);
|
||||
// cy.get(this._dsCreateNewTab)
|
||||
// .should("be.visible")
|
||||
// .click({ force: true });
|
||||
|
|
@ -469,6 +465,7 @@ export class DataSources {
|
|||
this.agHelper.UpdateCodeInput($field, query);
|
||||
});
|
||||
this.agHelper.AssertAutoSave();
|
||||
this.agHelper.Sleep(500); //waiting a bit before proceeding!
|
||||
}
|
||||
|
||||
public RunQueryNVerifyResponseViews(
|
||||
|
|
|
|||
|
|
@ -42,6 +42,8 @@ export class PropertyPane {
|
|||
_colorPickerV2Popover = ".t--colorpicker-v2-popover";
|
||||
_colorPickerV2Color = ".t--colorpicker-v2-color";
|
||||
_colorRing = ".border-2";
|
||||
_colorInput = (option: string) => "//h3[text()='" + option + " Color']//parent::div//input";
|
||||
//_colorInputField = (option: string) => "//h3[text()='" + option + " Color']//parent::div";
|
||||
|
||||
private isMac = Cypress.platform === "darwin";
|
||||
private selectAllJSObjectContentShortcut = `${
|
||||
|
|
@ -80,13 +82,19 @@ export class PropertyPane {
|
|||
}
|
||||
|
||||
public ChangeColor(
|
||||
colorIndex: number,
|
||||
colorIndex: number | string,
|
||||
type: "Primary" | "Background" = "Primary",
|
||||
) {
|
||||
const typeIndex = type == "Primary" ? 0 : 1;
|
||||
this.agHelper.GetNClick(this._colorRing, typeIndex);
|
||||
this.agHelper.GetNClick(this._colorPickerV2Popover);
|
||||
this.agHelper.GetNClick(this._colorPickerV2Color, colorIndex);
|
||||
if (typeof colorIndex == "number") {
|
||||
this.agHelper.GetNClick(this._colorPickerV2Popover);
|
||||
this.agHelper.GetNClick(this._colorPickerV2Color, colorIndex);
|
||||
} else {
|
||||
this.agHelper.GetElement(this._colorInput(type)).clear();
|
||||
this.agHelper.TypeText(this._colorInput(type), colorIndex);
|
||||
//this.agHelper.UpdateInput(this._colorInputField(type), colorIndex);//not working!
|
||||
}
|
||||
}
|
||||
|
||||
public GetJSONFormConfigurationFileds() {
|
||||
|
|
|
|||
|
|
@ -133,7 +133,14 @@ export class Table {
|
|||
) {
|
||||
//timeout can be sent higher values incase of larger tables
|
||||
this.agHelper.Sleep(timeout); //Settling time for table!
|
||||
return cy.get(this._tableRowColumnData(rowNum, colNum)).invoke("text");
|
||||
return cy.waitUntil(
|
||||
() => this.agHelper.GetElement(this._tableRowColumnData(rowNum, colNum), 30000),
|
||||
{
|
||||
errorMsg: "Table is not populated",
|
||||
timeout: 30000,
|
||||
interval: 2000,
|
||||
},
|
||||
).then($cellVal => cy.wrap($cellVal).invoke("text"));
|
||||
}
|
||||
|
||||
public AssertTableRowImageColumnIsLoaded(
|
||||
|
|
@ -226,7 +233,8 @@ export class Table {
|
|||
});
|
||||
}
|
||||
|
||||
public SelectTableRow(rowIndex: number, columnIndex = 0) { //rowIndex - 0 for 1st row
|
||||
public SelectTableRow(rowIndex: number, columnIndex = 0) {
|
||||
//rowIndex - 0 for 1st row
|
||||
cy.get(this._tableRow(rowIndex, columnIndex))
|
||||
.first()
|
||||
.trigger("click", { force: true });
|
||||
|
|
|
|||
|
|
@ -336,7 +336,6 @@ Cypress.Commands.add(
|
|||
Cypress.Commands.add("createPostgresDatasource", () => {
|
||||
cy.NavigateToDatasourceEditor();
|
||||
cy.get(datasourceEditor.PostgreSQL).click();
|
||||
//cy.getPluginFormsAndCreateDatasource();
|
||||
cy.fillPostgresDatasourceForm();
|
||||
cy.testSaveDatasource();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user