-
diff --git a/console/src/components/Services/Data/TableModify/ModifyTable.js b/console/src/components/Services/Data/TableModify/ModifyTable.js
index dd9768334c86f..1ba6f0ed9409d 100644
--- a/console/src/components/Services/Data/TableModify/ModifyTable.js
+++ b/console/src/components/Services/Data/TableModify/ModifyTable.js
@@ -270,7 +270,11 @@ const ColumnEditor = ({
{checkExistingForeignKey()}
-
+
Save
{!isPrimaryKey ? (
@@ -281,6 +285,7 @@ const ColumnEditor = ({
e.preventDefault();
onDelete();
}}
+ data-test="remove-button"
>
Remove
@@ -439,6 +444,7 @@ class ModifyTable extends Component {
onClick={() => {
dispatch({ type: TOGGLE_ACTIVE_COLUMN, column: colName });
}}
+ data-test={`edit-${colName}`}
>
{btnText}
@@ -538,6 +544,7 @@ class ModifyTable extends Component {
type="text"
className={`${styles.input} input-sm form-control`}
ref={n => (colNameInput = n)}
+ data-test="column-name"
/>