$session->pageTextContains('Enter the list of pages where the toolbox will not be displayed. Specify pages by using their paths. Enter one path per line.');
$session->pageTextContains('Hide the toolbox on these pages');
$session->pageTextContains('Display preferences toolbox on admin pages');
$this->createContentType(['type'=>'page']);
Node::create(
[
'title'=>$this->randomString(),
'type'=>'page',
'body'=>"Loremp",
]
)->save();
// Add the newly created page in the blacklist.
$edit=[
'url_blacklist'=>'/node/1',
];
$this->submitForm($edit,'Save configuration');
$session->statusCodeEquals(200);
$session->pageTextContains('The configuration options have been saved.');