PHP code example of priotas / behat-slack-extension

1. Go to this page and download the library: Download priotas/behat-slack-extension library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

priotas / behat-slack-extension example snippets


/**
 * @AfterStep
 */
public function takeScreenshotAfterFailedStep(Behat\Behat\Hook\Scope\AfterStepScope $scope)
{
    /** Behat\Behat\Tester\Result\StepResult $result */
    $result = $scope->getTestResult();
    if (!$result->isPassed()) {

        $driver = $this->getSession()->getDriver();
        if ($driver instanceof \Behat\Mink\Driver\Selenium2Driver) {
            $driver->resizeWindow(1024, 768);

            $featureName = basename($scope->getFeature()->getFile(), '.feature');
            $stepText = $featureName . '.' . $this->scenarioName . '.' . $scope->getStep()->getText();
            $fileTitle = 'behat_screenshot_' . preg_replace("#[^a-zA-Z0-9\._-]#", '', $stepText);
            $fileName = sys_get_temp_dir() . DIRECTORY_SEPARATOR . $fileTitle . '.png';
            $screenshot = $driver->getScreenshot();
            file_put_contents($fileName, $screenshot);

            print "Screenshot for '{$stepText}' placed in {$fileName}\n";

            if (isset($this->slackChannel)) {
                print "Uploading Screenshot to Slack...\n";
                $this->slackChannel->upload($fileName, $fileTitle, $stepText);
            }
        }
    }
}