Merge branch '5.0' into 5

This commit is contained in:
github-actions 2023-11-18 14:23:19 +00:00
commit d946d69f17
2 changed files with 2 additions and 6 deletions

View File

@ -64,7 +64,7 @@ class EmailContext implements Context
*/
public function thereIsAnEmailFromTo($negate, $direction, $email)
{
$to = ($direction == 'to') ? $email : null;
$to = ($direction == 'to') ? $email : '';
$from = ($direction == 'from') ? $email : null;
$match = $this->mailer->findEmail($to, $from);
if (trim($negate ?? '')) {
@ -84,7 +84,7 @@ class EmailContext implements Context
*/
public function thereIsAnEmailFromToTitled($negate, $direction, $email, $subject)
{
$to = ($direction == 'to') ? $email : null;
$to = ($direction == 'to') ? $email : '';
$from = ($direction == 'from') ? $email : null;
$match = $this->mailer->findEmail($to, $from, $subject);
$allMails = $this->mailer->findEmails($to, $from);

View File

@ -133,10 +133,6 @@ trait DebugTools
{
// Validate driver
$driver = $this->getSession()->getDriver();
if (!($driver instanceof FacebookWebDriver)) {
$this->logMessage('ScreenShots are only supported for FacebookWebDriver: skipping');
return;
}
$feature = $event->getFeature();
$step = $event->getStep();
$path = $this->prepareScreenshotPath();