public function EntityBrowserContext::open in Lightning Media 8.3
Same name and namespace in other branches
- 8.2 tests/contexts/EntityBrowserContext.behat.inc \Acquia\LightningExtension\Context\EntityBrowserContext::open()
Opens an entity browser.
Parameters
string $id: The entity browser ID.
File
- tests/
contexts/ EntityBrowserContext.behat.inc, line 157
Class
- EntityBrowserContext
- Contains step definitions for interacting with entity browser instances.
Namespace
Acquia\LightningExtension\ContextCode
public function open($id) {
$this->isJS ? $this
->openJs($id) : $this
->openNoJs($id);
}