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
Feature("Richtext basic functional");
 
Before(({ LabelStudio }) => {
  LabelStudio.setFeatureFlags({
    fflag_feat_front_dev_3873_labeling_ui_improvements_short: true,
  });
});
 
Scenario("Creating, removing and restoring regions", async ({ I, LabelStudio, AtOutliner, AtRichText }) => {
  I.amOnPage("/");
 
  LabelStudio.init({
    config: `<View>
    <Labels name="label" toName="html">
        <Label value="Highlight" background="rgb(225,180,0)" />
    </Labels>
    <HyperText name="html" value="$html" />
</View>`,
    data: {
      html: "<div>Hello world!</div>",
    },
    annotations: [
      {
        id: "test",
        result: [
          {
            id: "Highlight_1",
            from_name: "label",
            to_name: "html",
            type: "labels",
            value: {
              start: "/div[1]",
              startOffset: 0,
              end: "/div[1]",
              endOffset: 5,
              labels: ["Highlight"],
            },
          },
        ],
      },
    ],
  });
 
  LabelStudio.waitForObjectsReady();
 
  const regionALocator = locate(".htx-highlight").withText("Hello");
  const regionAStyleLocator = locate('style[id^="highlight-Highlight_1"]');
  const regionBLocator = locate(".htx-highlight").withText("world");
  const regionBStyleLocator = locate(
    'style[id^="highlight-"]:not([id^="highlight-Highlight_1"]):not([id="highlight-html"])',
  );
 
  AtOutliner.seeRegions(1);
  I.say("We have 1 preset region. Let's create another one.");
  I.pressKey("1");
  AtRichText.selectTextByGlobalOffset(6, 11);
  AtOutliner.seeRegions(2);
 
  within({ frame: ".lsf-richtext__iframe" }, () => {
    I.say("We can see all the regions inside the rich text and their styles in head.");
    I.seeElement(regionALocator);
    I.seeElementInDOM(regionAStyleLocator);
    I.seeElement(regionBLocator);
    I.seeElementInDOM(regionBStyleLocator);
  });
 
  I.say("Delete all regions");
  I.pressKey(["CommandOrControl", "Backspace"]);
  I.acceptPopup();
 
  AtOutliner.seeRegions(0);
  within({ frame: ".lsf-richtext__iframe" }, () => {
    I.say("Spans and styles should disappear");
    I.dontSeeElement(regionALocator);
    I.dontSeeElementInDOM(regionAStyleLocator);
    I.dontSeeElement(regionBLocator);
    I.dontSeeElementInDOM(regionBStyleLocator);
  });
 
  I.say("Go back through the history and check that everything is restored");
  I.pressKey(["CommandOrControl", "z"]);
 
  within({ frame: ".lsf-richtext__iframe" }, () => {
    I.say("We can see all the regions inside the rich text and their styles in head.");
    I.seeElement(regionALocator);
    I.seeElementInDOM(regionAStyleLocator);
    I.seeElement(regionBLocator);
    I.seeElementInDOM(regionBStyleLocator);
  });
});
 
Scenario("Region should load after change between annotation tabs", async ({ I, LabelStudio }) => {
  I.amOnPage("/");
 
  LabelStudio.init({
    config: `<View>
    <Labels name="label" toName="html">
        <Label value="Highlight" background="rgb(225,180,0)" />
    </Labels>
    <HyperText name="html" value="$html" />
</View>`,
    data: {
      html: "<div>Hello world!</div>",
    },
    annotations: [
      {
        id: "1234",
        result: [
          {
            id: "Highlight_1",
            from_name: "label",
            to_name: "html",
            type: "labels",
            value: {
              start: "/div[1]",
              startOffset: 0,
              end: "/div[1]",
              endOffset: 5,
              labels: ["Highlight"],
            },
          },
        ],
      },
      {
        id: "1235",
        result: [
          {
            id: "Highlight_2",
            from_name: "label",
            to_name: "html",
            type: "labels",
            value: {
              start: "/div[1]",
              startOffset: 6,
              end: "/div[1]",
              endOffset: 11,
              labels: ["Highlight"],
            },
          },
        ],
      },
    ],
  });
 
  LabelStudio.waitForObjectsReady();
 
  // select second annotation
  I.click(".lsf-annotation-button:nth-child(2)");
  // select first annotation
  I.click(".lsf-annotation-button:nth-child(1)");
  // select second annotation again
  I.click(".lsf-annotation-button:nth-child(2)");
  // check if region is visible
  within({ frame: ".lsf-richtext__iframe" }, () => {
    I.seeElement(locate(".htx-highlight").withText("Hello"));
  });
  // select first annotation again
  I.click(".lsf-annotation-button:nth-child(1)");
  // check if region is visible
  within({ frame: ".lsf-richtext__iframe" }, () => {
    I.seeElement(locate(".htx-highlight").withText("world"));
  });
});
 
Scenario("Rich text content consistency", async ({ I, LabelStudio, AtOutliner, AtRichText }) => {
  I.amOnPage("/");
 
  LabelStudio.init({
    config: `<View>
    <Labels name="label" toName="html">
        <Label value="Highlight" background="#617ADA" />
    </Labels>
    <HyperText name="html" value="$html" />
</View>`,
    data: {
      html: "<div>One two three</div>",
    },
    annotations: [
      {
        id: "test",
        result: [],
      },
    ],
  });
 
  LabelStudio.waitForObjectsReady();
  AtOutliner.seeRegions(0);
 
  const checkThatRegionsDoNotAffectContent = async (startOffset, endOffset) => {
    within({ frame: ".lsf-richtext__iframe" }, async () => {
      I.seeElement(locate("div").withText("One two three"));
    });
 
    I.say(`Create region in range [${startOffset},${endOffset}]`);
    I.pressKey("u");
    I.pressKey("1");
    AtRichText.selectTextByGlobalOffset(startOffset, endOffset);
    AtOutliner.seeRegions(1);
 
    within({ frame: ".lsf-richtext__iframe" }, () => {
      I.seeElement(locate("div").withText("One two three"));
    });
 
    I.say("Remove region");
    AtOutliner.clickRegion(1);
    I.pressKey("Backspace");
    AtOutliner.seeRegions(0);
 
    within({ frame: ".lsf-richtext__iframe" }, () => {
      I.seeElement(locate("div").withText("One two three"));
    });
 
    I.say("Go back through the history");
    I.pressKey(["CommandOrControl", "z"]);
 
    within({ frame: ".lsf-richtext__iframe" }, () => {
      I.seeElement(locate("div").withText("One two three"));
    });
 
    I.say("Go forward through the history");
    I.pressKey(["CommandOrControl", "shift", "z"]);
 
    within({ frame: ".lsf-richtext__iframe" }, () => {
      I.seeElement(locate("div").withText("One two three"));
    });
  };
 
  checkThatRegionsDoNotAffectContent(0, 3);
  checkThatRegionsDoNotAffectContent(8, 13);
  checkThatRegionsDoNotAffectContent(4, 7);
});