Drupal Test

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.8] - 2019-08-16

Added

Changed

Deprecated

Removed

Fixed

[0.7.0] - 2019-06-11

Added

Removed

[0.6.1] - 2019-06-11

0.6.0

0.5.3

0.5.0

0.4.0

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