public function DomainTestBase::uncheckField in Domain Access 8
Unchecks checkbox with specified locator.
Parameters
string $locator: An input id, name or label.
Throws
\Behat\Mink\Exception\ElementNotFoundException
3 calls to DomainTestBase::uncheckField()
- DomainAccessElementTest::runInstalledTest in domain_access/
tests/ src/ Functional/ DomainAccessElementTest.php - Basic test setup.
- DomainAdminElementTest::testDomainAccessElement in domain/
tests/ src/ Functional/ DomainAdminElementTest.php - Basic test setup.
- DomainReferencesTest::testDomainReferences in domain/
tests/ src/ Functional/ DomainReferencesTest.php - Basic test setup.
File
- domain/
tests/ src/ Functional/ DomainTestBase.php, line 195
Class
- DomainTestBase
- Class DomainTestBase.
Namespace
Drupal\Tests\domain\FunctionalCode
public function uncheckField($locator) {
$this
->getSession()
->getPage()
->uncheckField($locator);
}