- If required, enable camera and mic access to observe participants' facial expressions and
- verbal feedback in real-time, providing deeper insights into their user experience during
- the test.
+ Enable camera and mic options to watch participants' reactions and hear their comments for better insights into their experience.
Allow participants to type an answer
@@ -61,7 +82,8 @@ function StepsModal({
unCheckedChildren="No"
/>
- Enabling this option will show a text field for participants to type their answer.
+ Enabling this option will show a text field for participants to type
+ their answer.
diff --git a/frontend/app/components/UsabilityTesting/TestEdit.tsx b/frontend/app/components/UsabilityTesting/TestEdit.tsx
index 5215471fc..37ff58535 100644
--- a/frontend/app/components/UsabilityTesting/TestEdit.tsx
+++ b/frontend/app/components/UsabilityTesting/TestEdit.tsx
@@ -36,7 +36,7 @@ function TestEdit() {
// @ts-ignore
const { siteId, testId } = useParams();
const [hasChanged, setHasChanged] = React.useState(testId === 'new');
- const [typingEnabled, setTypingEnabled] = React.useState(false);
+ const [typingEnabled, setTypingEnabled] = React.useState(true);
const { uxtestingStore } = useStore();
const [newTestTitle, setNewTestTitle] = React.useState('');
const [newTestDescription, setNewTestDescription] = React.useState('');
@@ -223,7 +223,7 @@ function TestEdit() {
}}
/>
{uxtestingStore.instance!.startingPath === 'https://' || isStartingPointValid ? (
- Test will begin on this page.
+ The test starts at this URL, but not everyone visiting the link will see it. After publishing, you'll get a Distribution URL to share with selected participants.
) : (
Starting point URL is invalid.
)}
diff --git a/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx b/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx
index 177adfc4f..b39e2128b 100644
--- a/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx
+++ b/frontend/app/components/UsabilityTesting/UsabilityTesting.tsx
@@ -19,7 +19,7 @@ const { Search } = Input;
const PER_PAGE = 10;
let debouncedSearch: any = () => null;
-const defaultDescription = `To evaluate the usability of [Feature Name], focusing on user interaction, efficiency, and satisfaction. The aim is to identify any usability issues that users may encounter, understand how they navigate [Feature Name], and gauge the intuitiveness of the workflow.`;
+const defaultDescription = `To assess how easy it is to use [Feature Name], we'll look at how users interact with it, how efficient it is, and if they're happy using it.`;
function TestsTable() {
const inputRef = React.useRef(null);
@@ -76,7 +76,7 @@ function TestsTable() {
onOk={() => onClose(true)}
onCancel={() => onClose(false)}
footer={
-