diff --git a/app/client/src/components/editorComponents/ApiResponseView.test.tsx b/app/client/src/components/editorComponents/ApiResponseView.test.tsx
new file mode 100644
index 000000000000..43825bb60280
--- /dev/null
+++ b/app/client/src/components/editorComponents/ApiResponseView.test.tsx
@@ -0,0 +1,91 @@
+import React from "react";
+import { render } from "@testing-library/react";
+import ApiResponseView from "./ApiResponseView";
+import configureStore from "redux-mock-store";
+import { Provider } from "react-redux";
+import { ThemeProvider } from "styled-components";
+import { unitTestBaseMockStore } from "layoutSystems/common/dropTarget/unitTestUtils";
+import { lightTheme } from "selectors/themeSelectors";
+import { BrowserRouter as Router } from "react-router-dom";
+import { EditorViewMode } from "@appsmith/entities/IDE/constants";
+import "@testing-library/jest-dom/extend-expect";
+
+jest.mock("./EntityBottomTabs", () => ({
+ __esModule: true,
+ default: () =>
,
+}));
+
+const mockStore = configureStore([]);
+
+const storeState = {
+ ...unitTestBaseMockStore,
+ evaluations: {
+ tree: {},
+ },
+ ui: {
+ ...unitTestBaseMockStore.ui,
+ gitSync: {
+ branches: [],
+ fetchingBranches: false,
+ isDeploying: false,
+ protectedBranchesLoading: false,
+ protectedBranches: [],
+ },
+ editor: {
+ isPreviewMode: false,
+ },
+ users: {
+ featureFlag: {
+ data: {},
+ overriddenFlags: {},
+ },
+ },
+ ide: {
+ view: EditorViewMode.FullScreen,
+ },
+ debugger: {
+ context: {
+ errorCount: 0,
+ },
+ },
+ apiPane: {
+ debugger: {
+ open: true,
+ responseTabHeight: 200,
+ selectedTab: "response",
+ },
+ },
+ },
+};
+
+describe("ApiResponseView", () => {
+ let store: any;
+
+ beforeEach(() => {
+ store = mockStore(storeState);
+ });
+
+ it("the container should have class select-text to enable the selection of text for user", () => {
+ const { container } = render(
+
+
+
+ {}}
+ responseDataTypes={[]}
+ responseDisplayFormat={{ title: "JSON", value: "JSON" }}
+ />
+
+
+ ,
+ );
+
+ expect(
+ container
+ .querySelector(".t--api-bottom-pane-container")
+ ?.classList.contains("select-text"),
+ ).toBe(true);
+ });
+});
diff --git a/app/client/src/components/editorComponents/ApiResponseView.tsx b/app/client/src/components/editorComponents/ApiResponseView.tsx
index 1f9fbbc9472a..94c6b36bbbd1 100644
--- a/app/client/src/components/editorComponents/ApiResponseView.tsx
+++ b/app/client/src/components/editorComponents/ApiResponseView.tsx
@@ -540,7 +540,10 @@ function ApiResponseView(props: Props) {
if (!open) return null;
return (
-
+
{
diff --git a/app/client/src/components/editorComponents/JSResponseView.test.tsx b/app/client/src/components/editorComponents/JSResponseView.test.tsx
index 1c3973e28e1a..f1a3499e58fa 100644
--- a/app/client/src/components/editorComponents/JSResponseView.test.tsx
+++ b/app/client/src/components/editorComponents/JSResponseView.test.tsx
@@ -141,4 +141,36 @@ describe("JSResponseView", () => {
// nothing should be rendered here since the implementation for component is in EE code
expect(queryByText(document.body, EMPTY_RESPONSE_LAST_HALF())).toBeNull();
});
+
+ it("the container should have class select-text to enable the selection of text for user", () => {
+ // mock the return value of isBrowserExecutionAllowed
+ (
+ actionExecutionUtils.isBrowserExecutionAllowed as jest.Mock
+ ).mockImplementation(() => false);
+
+ const { container } = render(
+
+
+
+
+
+
+ ,
+ );
+
+ expect(
+ container
+ .querySelector(".t--js-editor-bottom-pane-container")
+ ?.classList.contains("select-text"),
+ ).toBe(true);
+ });
});
diff --git a/app/client/src/components/editorComponents/JSResponseView.tsx b/app/client/src/components/editorComponents/JSResponseView.tsx
index 3659f2c471cc..2e8580edf879 100644
--- a/app/client/src/components/editorComponents/JSResponseView.tsx
+++ b/app/client/src/components/editorComponents/JSResponseView.tsx
@@ -336,7 +336,7 @@ function JSResponseView(props: Props) {
// Do not render if header tab is selected in the bottom bar.
return open && selectedTab ? (
({
+ __esModule: true,
+ default: () => ,
+}));
+
+const mockStore = configureStore([]);
+
+const storeState = {
+ ...unitTestBaseMockStore,
+ evaluations: {
+ tree: {},
+ },
+ ui: {
+ ...unitTestBaseMockStore.ui,
+ users: {
+ featureFlag: {
+ data: {},
+ overriddenFlags: {},
+ },
+ },
+ ide: {
+ view: EditorViewMode.FullScreen,
+ },
+ debugger: {
+ isOpen: true,
+ errors: {},
+ expandId: "",
+ hideErrors: false,
+ context: {
+ scrollPosition: 0,
+ selectedDebuggerTab: "ERROR",
+ responseTabHeight: 252.1953125,
+ errorCount: 0,
+ selectedDebuggerFilter: "error",
+ },
+ logs: [],
+ },
+ },
+};
+
+describe("ApiResponseView", () => {
+ let store: any;
+
+ beforeEach(() => {
+ store = mockStore(storeState);
+ });
+
+ it("the container should have class select-text to enable the selection of text for user", () => {
+ const { container } = render(
+
+
+
+
+
+
+ ,
+ );
+
+ expect(
+ container
+ .querySelector(".t--datasource-bottom-pane-container")
+ ?.classList.contains("select-text"),
+ ).toBe(true);
+ });
+});
diff --git a/app/client/src/pages/Editor/DataSourceEditor/Debugger.tsx b/app/client/src/pages/Editor/DataSourceEditor/Debugger.tsx
index f19ef75391d8..b4e9ef1bbd47 100644
--- a/app/client/src/pages/Editor/DataSourceEditor/Debugger.tsx
+++ b/app/client/src/pages/Editor/DataSourceEditor/Debugger.tsx
@@ -156,7 +156,7 @@ export default function Debugger() {
return shouldRender ? (
{
+ let store: any;
+
+ beforeEach(() => {
+ store = mockStore(storeState);
+ });
+
+ it("the container should have class select-text to enable the selection of text for user", () => {
+ const { container } = render(
+
+
+
+ {}}
+ />
+
+
+ ,
+ );
+
+ expect(
+ container
+ .querySelector(".t--query-bottom-pane-container")
+ ?.classList.contains("select-text"),
+ ).toBe(true);
+ });
+});
diff --git a/app/client/src/pages/Editor/QueryEditor/QueryDebuggerTabs.tsx b/app/client/src/pages/Editor/QueryEditor/QueryDebuggerTabs.tsx
index 701584f8b414..26149a7d76bd 100644
--- a/app/client/src/pages/Editor/QueryEditor/QueryDebuggerTabs.tsx
+++ b/app/client/src/pages/Editor/QueryEditor/QueryDebuggerTabs.tsx
@@ -247,7 +247,7 @@ function QueryDebuggerTabs({
return (