Added different container creation playwirhgt tests

This commit is contained in:
Sung-Hyun Kang
2025-12-09 19:07:54 -06:00
parent 5b7d1a74af
commit 945c457bd5
22 changed files with 1088 additions and 71 deletions

View File

@@ -209,6 +209,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
checked={isAutoscaleSelected}
type="radio"
role="radio"
data-test="ThroughputInput/ThroughputMode:Autoscale"
tabIndex={0}
onChange={(e) => handleOnChangeMode(e, "Autoscale")}
/>
@@ -224,6 +225,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
type="radio"
aria-required={true}
role="radio"
data-test="ThroughputInput/ThroughputMode:Manual"
tabIndex={0}
onChange={(e) => handleOnChangeMode(e, "Manual")}
/>
@@ -286,7 +288,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
</Stack>
<TextField
id="autoscaleRUValueField"
data-test="autoscaleRUInput"
data-test="ThroughputInput/AutoscaleRUInput"
type="number"
styles={{
fieldGroup: { width: 100, height: 27, flexShrink: 0 },
@@ -352,6 +354,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
}
>
<TextField
data-test="ThroughputInput/ManualThroughputInput"
type="number"
styles={{
fieldGroup: { width: 300, height: 27 },