How I can take a look at the html-content of my plugin in wp-admin with PHPUnit assessments.
I need one thing like this:
set_current_screen('admin_page_myplugin');
$html = $this->getOriginalHTML();
$this->assertContains('My plugin distinctive content material', $html);
Thanks!