public function EntityBrowserContext::open in Lightning Media 8.2
Same name and namespace in other branches
- 8.3 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 169
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);
}