We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40135c2 commit 8eacb6bCopy full SHA for 8eacb6b
1 file changed
test/selenium/Table/BrowseTest.php
@@ -313,7 +313,16 @@ public function testDeleteRecords(): void
313
$this->byId('buttonYes')->click();
314
315
$this->waitAjax();
316
- $success = $this->waitForElement('className', 'alert-success');
+
317
+ $success = $this->waitForElement(
318
+ 'cssSelector',
319
+ '.sqlqueryresults > .result_query:nth-child(1) > .alert-success'
320
+ );
321
+ $this->assertStringContainsString('Your SQL query has been executed successfully.', $success->getText());
322
323
324
+ '.sqlqueryresults > .result_query:nth-child(2) > .alert-success'
325
326
$this->assertStringContainsString('Showing rows', $success->getText());
327
328
$this->assertFalse(
0 commit comments