File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
tests/suites/tenant/queryEditor Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -145,11 +145,14 @@ test.describe('Test Query Editor', async () => {
145145
146146 test ( 'Streaming query shows some results and banner when stop button is clicked' , async ( {
147147 page,
148- browserName,
149148 } ) => {
150- // For some reason Safari handles large numbers list bad in Safari
151- // Will be investigated here https://github.com/ydb-platform/ydb-embedded-ui/issues/1989
152- test . skip ( browserName === 'webkit' , 'This test is skipped in Safari' ) ;
149+ // Safari in playwright has problem with painting an array
150+ // of million values for frequently appearing rows.
151+ // But still need them for heavy responses to simulate
152+ // long running queries. Setting their display to none resolves the issue.
153+ await page . addStyleTag ( {
154+ content : '.ydb-query-result-sets-viewer__result tr td:nth-child(3n) { display: none; }' ,
155+ } ) ;
153156 const queryEditor = new QueryEditor ( page ) ;
154157 await toggleExperiment ( page , 'on' , 'Query Streaming' ) ;
155158
You can’t perform that action at this time.
0 commit comments