Drupal Test

CHANGELOG

0.3.0

Before:

$el = $this->assert()
  ->pageTextContains('Thank you for joining')
  ->getDomElements([
    '.t-educator-status__false',
    '.t-educator-status__true',
  ]);

After, in 0.2.6 onward

$this->assert()->pageTextContains('Thank you for joining');
$el = $this->getDomElements([
  '.t-educator-status__false',
  '.t-educator-status__true',
]);    

0.2.5

0.2.0