diff --git a/src/components/Select/Select.stories.tsx b/src/components/Select/Select.stories.tsx
index 4adbd71e5..5b14e88b8 100644
--- a/src/components/Select/Select.stories.tsx
+++ b/src/components/Select/Select.stories.tsx
@@ -67,6 +67,7 @@ function InteractiveExampleUsingChildren(props: Props) {
className={clsx(!compact && 'w-60')}
data-testid="dropdown"
disabled={disabled}
+ name="interactive-select"
onChange={setSelectedOption}
optionsAlign={optionsAlign}
optionsClassName={optionsClassName}
@@ -99,6 +100,7 @@ function InteractiveExampleUsingFunctionChildren() {
as="div"
className="w-60"
data-testid="dropdown"
+ name="interactive-with-children"
onChange={setSelectedOption}
value={selectedOption}
>
diff --git a/src/components/Select/Select.test.tsx b/src/components/Select/Select.test.tsx
index baa942584..1da7a81a3 100644
--- a/src/components/Select/Select.test.tsx
+++ b/src/components/Select/Select.test.tsx
@@ -61,7 +61,11 @@ describe('', () => {
it('throws an error if children is used without labeling', () => {
const dropdownWithChildrenAndLabelText = (
-