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
const assert = require("assert");
 
Feature("Richtext regions interactions");
 
Scenario(
  "Setting correct cursor on regions in relation creating mode",
  async ({ I, LabelStudio, AtOutliner, AtDetails }) => {
    I.amOnPage("/");
    LabelStudio.init({
      config: `<View>
    <Labels name="label" toName="text">
        <Label value="Label" background="green"/>
    </Labels>
    <Text name="text" value="$text" />
</View>`,
      data: {
        text: "Here is some text.",
      },
      annotations: [
        {
          id: "test",
          result: [
            {
              id: "A",
              from_name: "label",
              to_name: "text",
              type: "labels",
              value: { start: 0, end: 4, labels: ["Label"] },
            },
            {
              id: "B",
              from_name: "label",
              to_name: "text",
              type: "labels",
              value: { start: 5, end: 7, labels: ["Label"] },
            },
            {
              id: "C",
              from_name: "label",
              to_name: "text",
              type: "labels",
              value: { start: 5, end: 7, labels: ["Label"] },
            },
            {
              id: "D",
              from_name: "label",
              to_name: "text",
              type: "labels",
              value: { start: 8, end: 12, labels: ["Label"] },
            },
          ],
        },
      ],
    });
    LabelStudio.waitForObjectsReady();
    AtOutliner.seeRegions(4);
 
    I.say("Hide last region");
    AtOutliner.toggleRegionVisibility(4);
 
    I.say("Go into the relation creating mode from the first region");
    AtOutliner.clickRegion(1);
    AtDetails.clickCreateRelation();
 
    I.say("Cursor should be equal to `crosshair` when element is hovered and it is relation creating mode and visible");
    {
      I.say("Check the same region");
      const elementLocator = locate('[class*="htx-highlight-A"]');
 
      I.moveCursorTo(elementLocator);
      const cursor = await I.grabCssPropertyFrom(elementLocator, "cursor");
 
      assert.strictEqual(cursor, "crosshair");
    }
    {
      I.say("Check second region");
      const elementLocator = locate('[class*="htx-highlight-B"]');
 
      I.moveCursorTo(elementLocator);
      const cursor = await I.grabCssPropertyFrom(elementLocator, "cursor");
 
      assert.strictEqual(cursor, "crosshair");
    }
 
    {
      I.say("Check the hidden region");
      const elementLocator = locate('[class*="htx-highlight-D"]');
 
      I.moveCursorTo(elementLocator);
      const cursor = await I.grabCssPropertyFrom(elementLocator, "cursor");
 
      assert.notStrictEqual(cursor, "crosshair");
    }
 
    AtDetails.clickCreateRelation();
    I.say("It's not relation creating mode so there should be cursor equal to `pointer`");
    {
      I.say("Check the same region");
      const elementLocator = locate('[class*="htx-highlight-A"]');
 
      I.moveCursorTo(elementLocator);
      const cursor = await I.grabCssPropertyFrom(elementLocator, "cursor");
 
      assert.strictEqual(cursor, "pointer");
    }
    {
      I.say("Check second region");
      const elementLocator = locate('[class*="htx-highlight-B"]');
 
      I.moveCursorTo(elementLocator);
      const cursor = await I.grabCssPropertyFrom(elementLocator, "cursor");
 
      assert.strictEqual(cursor, "pointer");
    }
    {
      I.say("Check the hidden region");
      const elementLocator = locate('[class*="htx-highlight-D"]');
 
      I.moveCursorTo(elementLocator);
      const cursor = await I.grabCssPropertyFrom(elementLocator, "cursor");
 
      assert.notStrictEqual(cursor, "pointer");
    }
  },
);
 
Scenario("Hidden region interactions", async ({ I, LabelStudio, AtOutliner, AtDetails }) => {
  I.amOnPage("/");
 
  LabelStudio.init({
    config: `<View>
    <Labels name="label" toName="text">
        <Label value="Label" background="green"/>
    </Labels>
    <Text name="text" value="$text" />
</View>`,
    data: {
      text: "Here is some text.",
    },
    annotations: [
      {
        id: "test",
        result: [
          {
            id: "a",
            from_name: "label",
            to_name: "text",
            type: "labels",
            value: { start: 0, end: 4, labels: ["Label"] },
          },
          {
            id: "hidden_1",
            from_name: "label",
            to_name: "text",
            type: "labels",
            value: { start: 2, end: 3, labels: ["Label"] },
          },
          {
            id: "hidden_2",
            from_name: "label",
            to_name: "text",
            type: "labels",
            value: { start: 5, end: 7, labels: ["Label"] },
          },
          {
            id: "hidden_3",
            from_name: "label",
            to_name: "text",
            type: "labels",
            value: { start: 8, end: 12, labels: ["Label"] },
          },
          {
            id: "b",
            from_name: "label",
            to_name: "text",
            type: "labels",
            value: { start: 9, end: 11, labels: ["Label"] },
          },
        ],
      },
    ],
  });
 
  LabelStudio.waitForObjectsReady();
 
  I.say("Hide last regions");
  AtOutliner.toggleRegionVisibility(2);
  AtOutliner.toggleRegionVisibility(3);
  AtOutliner.toggleRegionVisibility(4);
 
  I.say("Try to select the first hidden element");
  I.click(locate(".htx-highlight").withText("r"));
  I.say("It should select other visible element");
  I.dontSeeElement(locate(".htx-highlight.__hidden.__active").withText("r"));
  I.seeElement(locate(".htx-highlight.__active").withChild(locate(".htx-highlight.__hidden").withText("r")));
 
  I.say("Reset selection");
  I.pressKey("u");
 
  I.say("Try to select the second hidden element");
  I.click(locate(".htx-highlight").withText("is"));
  I.say("It should not select anything");
  I.dontSeeElement(locate(".htx-highlight.__active"));
 
  I.say("Try to select the visible element over the third hidden one");
  I.click(locate(".htx-highlight:not(.__hidden)").withText("om"));
  I.say("It should become selected");
  I.dontSeeElement(locate(".htx-highlight.__hidden.__active").withChild(locate(".htx-highlight").withText("om")));
  I.seeElement(locate(".htx-highlight.__active:not(.__hidden)").withText("om"));
});