1616
1717package com .microsoft .playwright ;
1818
19- import org .junit .jupiter .api .Disabled ;
2019import org .junit .jupiter .api .Test ;
2120
2221import java .util .Collections ;
@@ -113,7 +112,6 @@ void textContentShouldWork() {
113112 assertEquals ("Text,\n more text" , page .textContent ("#inner" ));
114113 }
115114
116- @ Disabled ("Temporarily skipping until the roll that contains https://github.com/microsoft/playwright/pull/36227" )
117115 @ Test
118116 void textContentShouldBeAtomic () {
119117 String createDummySelector = "{\n " +
@@ -137,7 +135,6 @@ void textContentShouldBeAtomic() {
137135 assertEquals ("modified" , page .evaluate ("() => document.querySelector('div').textContent" ));
138136 }
139137
140- @ Disabled ("Temporarily skipping until the roll that contains https://github.com/microsoft/playwright/pull/36227" )
141138 @ Test
142139 void innerTextShouldBeAtomic () {
143140 String createDummySelector = "{\n " +
@@ -161,7 +158,6 @@ void innerTextShouldBeAtomic() {
161158 assertEquals ("modified" , page .evaluate ("() => document.querySelector('div').innerText" ));
162159 }
163160
164- @ Disabled ("Temporarily skipping until the roll that contains https://github.com/microsoft/playwright/pull/36227" )
165161 @ Test
166162 void innerHTMLShouldBeAtomic () {
167163 String createDummySelector = "{\n " +
@@ -185,7 +181,6 @@ void innerHTMLShouldBeAtomic() {
185181 assertEquals ("modified" , page .evaluate ("() => document.querySelector('div').innerHTML" ));
186182 }
187183
188- @ Disabled ("Temporarily skipping until the roll that contains https://github.com/microsoft/playwright/pull/36227" )
189184 @ Test
190185 void getAttributeShouldBeAtomic () {
191186 String createDummySelector = "{\n " +
0 commit comments