Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
Feature("Audio WebAudio Decoder");
 
const config = `
<View>
  <Header value="Select regions:"></Header>
  <Labels name="label" toName="audio" choice="multiple">
    <Label value="Beat" background="yellow"></Label>
    <Label value="Voice" background="red"></Label>
    <Label value="Guitar" background="blue"></Label>
    <Label value="Other"></Label>
  </Labels>
  <Header value="Select genre:"></Header>
  <Choices name="choice" toName="audio" choice="multiple">
    <Choice value="Lo-Fi" />
    <Choice value="Rock" />
    <Choice value="Pop" />
  </Choices>
  <Header value="Listen the audio:"></Header>
  <Audio name="audio" value="$url"></Audio>
</View>
`;
 
const configSpeech = `
<View>
    <Audio name="audio" value="$url" decoder="webaudio"></Audio>
    <Labels name="label" toName="audio">
      <Label value="Speech"/>
      <Label value="Noise" background="grey"/>
    </Labels>
    <TextArea name="transcription" toName="audio"
              perRegion="true" whenTagName="label" whenLabelValue="Speech"
              displayMode="region-list"/>
    <Choices name="sentiment" toName="audio" showInline="true"
             perRegion="true" whenTagName="label" whenLabelValue="Speech">
        <Choice value="Positive"/>
        <Choice value="Neutral"/>
        <Choice value="Negative"/>
    </Choices>
  </View>
`;
 
const data = {
  url: "/public/files/barradeen-emotional.mp3",
};
 
const annotations = [
  {
    from_name: "choice",
    id: "hIj6zg57SY",
    to_name: "audio",
    type: "choices",
    origin: "manual",
    value: {
      choices: ["Lo-Fi"],
    },
  },
  {
    from_name: "label",
    id: "JhxupEJWlW",
    to_name: "audio",
    original_length: 98.719925,
    type: "labels",
    origin: "manual",
    value: {
      channel: 1,
      end: 59.39854733358493,
      labels: ["Other"],
      start: 55.747572792986325,
    },
  },
];
 
const params = { annotations: [{ id: "test", result: annotations }], config, data };
const paramsSpeech = { annotations: [{ id: "test", result: [] }], config: configSpeech, data };
 
Scenario("Check if regions are selected", async ({ I, LabelStudio, AtAudioView, AtOutliner }) => {
  LabelStudio.setFeatureFlags({
    ff_front_dev_2715_audio_3_280722_short: true,
  });
  I.amOnPage("/");
 
  LabelStudio.init(params);
 
  await AtAudioView.waitForAudio();
 
  I.waitForDetached("loading-progress-bar", 30);
 
  await AtAudioView.lookForStage();
 
  AtOutliner.seeRegions(1);
 
  // creating a new region
  I.pressKey("1");
  AtAudioView.dragAudioElement(160, 80);
  I.pressKey("u");
 
  AtOutliner.seeRegions(2);
 
  AtAudioView.clickAt(170);
  AtOutliner.seeSelectedRegion();
  AtAudioView.clickAt(170);
  AtOutliner.dontSeeSelectedRegion();
  AtAudioView.dragAudioElement(170, 40);
  AtOutliner.seeSelectedRegion();
  AtAudioView.clickAt(220);
  AtOutliner.dontSeeSelectedRegion();
});
 
Scenario(
  "Check if multiple regions are working changing labels",
  async ({ I, LabelStudio, AtAudioView, AtOutliner }) => {
    LabelStudio.setFeatureFlags({
      ff_front_dev_2715_audio_3_280722_short: true,
    });
    I.amOnPage("/");
 
    LabelStudio.init(paramsSpeech);
 
    await AtAudioView.waitForAudio();
 
    I.waitForDetached("loading-progress-bar", 30);
 
    await AtAudioView.lookForStage();
 
    for (let i = 0; i < 10; i++) {
      // creating a new region
      I.pressKey("1");
      AtAudioView.dragAudioElement(40 * i + 10, 30);
      AtAudioView.clickAt(40 * i + 20);
      I.pressKey("2");
      I.pressKey("1");
      I.pressKey("u");
    }
 
    AtOutliner.seeRegions(10);
 
    for (let i = 0; i < 10; i++) {
      // creating a new region
      AtAudioView.clickAt(40 * i + 20);
      AtOutliner.seeSelectedRegion();
      I.pressKey("u");
    }
 
    AtOutliner.seeRegions(10);
 
    I.pressKey("u");
 
    AtOutliner.dontSeeSelectedRegion();
  },
);
 
Scenario("Can select a region below a hidden region", async ({ I, LabelStudio, AtAudioView, AtOutliner }) => {
  LabelStudio.setFeatureFlags({
    ff_front_dev_2715_audio_3_280722_short: true,
  });
  I.amOnPage("/");
 
  LabelStudio.init(paramsSpeech);
 
  await AtAudioView.waitForAudio();
 
  I.waitForDetached("loading-progress-bar", 30);
 
  await AtAudioView.lookForStage();
 
  // create a new region
  I.pressKey("1");
  AtAudioView.dragAudioElement(50, 80);
  I.pressKey("u");
 
  AtOutliner.seeRegions(1);
 
  // create a new region above the first one
  I.pressKey("2");
  AtAudioView.dragAudioElement(49, 81);
  I.pressKey("u");
 
  AtOutliner.seeRegions(2);
 
  // click on the top-most region visible to select it
  AtAudioView.clickAt(51);
  AtOutliner.seeSelectedRegion("Noise");
 
  // hide the region
  AtOutliner.toggleRegionVisibility("Noise");
 
  // click on the region below the hidden one to select it
  AtAudioView.clickAt(51);
  AtOutliner.seeSelectedRegion("Speech");
});
 
Scenario("Delete region by pressing delete hotkey", async ({ I, LabelStudio, AtAudioView, AtOutliner }) => {
  LabelStudio.setFeatureFlags({
    ff_front_dev_2715_audio_3_280722_short: true,
  });
  I.amOnPage("/");
 
  LabelStudio.init(params);
 
  await AtAudioView.waitForAudio();
 
  I.waitForDetached("loading-progress-bar", 30);
 
  await AtAudioView.lookForStage();
 
  AtOutliner.seeRegions(1);
 
  // creating a new region
  AtAudioView.dragAudioElement(160, 80);
 
  I.pressKey("Delete");
 
  I.pressKey("1");
 
  AtOutliner.seeRegions(1);
});
 
Scenario("Check if there are ghost regions", async ({ I, LabelStudio, AtAudioView, AtOutliner }) => {
  LabelStudio.setFeatureFlags({
    ff_front_dev_2715_audio_3_280722_short: true,
  });
  I.amOnPage("/");
 
  LabelStudio.init(paramsSpeech);
 
  await AtAudioView.waitForAudio();
 
  I.waitForDetached("loading-progress-bar", 30);
 
  await AtAudioView.lookForStage();
 
  // creating a new region
  I.pressKey("1");
  AtAudioView.dragAudioElement(300, 80);
  I.pressKey("u");
 
  // creating a ghost region
  I.pressKey("1");
  AtAudioView.dragAudioElement(160, 80, false);
  I.pressKey("1");
  I.waitTicks(2);
  I.pressMouseUp();
  I.waitTicks(2);
 
  // checking if the created region is selected
  AtAudioView.clickAt(310);
  AtOutliner.seeSelectedRegion();
 
  // trying to select the ghost region, if there is no ghost region, the region will keep selected
  // as ghost region is not selectable and impossible to change the label, the created region will be deselected if there is a ghost region created.
  AtAudioView.clickAt(170);
  I.pressKey("2");
  AtOutliner.seeSelectedRegion();
 
  AtOutliner.seeRegions(2);
});