drupalCreateUser([ 'access test_entity_browser_for_images entity browser pages', ]); $this->drupalLogin($account); $image = current($this->drupalGetTestFiles('image')); // Go to the entity browser iframe link. $this->drupalGet('/entity-browser/iframe/test_entity_browser_for_images'); $edit = [ 'files[upload][]' => $this->container->get('file_system')->realpath($image->uri), ]; $this->drupalPostForm(NULL, $edit, t('Select')); $this->assertText('Labels:'); $this->assertNoText('The media bundle is not configured correctly.'); } }