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',
]);
You should manually update composer.json with the following require:
"aklump/manual-test": "^1.2.1",
TestClass::$schema has been replaced with TestClass::getSchema().