Sélénium - Capturer des vidéos

Parfois, nous ne pouvons pas analyser les échecs simplement à l'aide d'un fichier journal ou d'une capture d'écran. Parfois, cela aide à capturer l'exécution complète sous forme de vidéo. Laissez-nous comprendre comment capturer des vidéos.

Nous utiliserons Monte Media Library pour effectuer cette opération.

Configuration

Step 1 - Accédez à l'URL - https://www.randelshofer.ch/monte/index.html et téléchargez le JAR de l'enregistreur d'écran comme indiqué ci-dessous.

Step 2 - Après le téléchargement, ajoutez le fichier JAR aux bibliothèques du projet en cours.

Step 3 - Nous utiliserons le package AWT de Java pour initialiser la configuration graphique.

GraphicsConfiguration gc = GraphicsEnvironment
  .getLocalGraphicsEnvironment()
  .getDefaultScreenDevice()
  .getDefaultConfiguration();

Step 4 - Une instance de ScreenRecorder est créée qui prend les paramètres suivants.

N ° Sr. Paramètre et description
1

GraphicsConfiguration

Fournit des informations sur l'écran d'affichage telles que la taille et la résolution.

2

Video and compression format

Le format de sortie (AVI) du film avec le nombre d'images / s.

3

Color of the mouse cursor and refresh rate

Spécifie la couleur du curseur de la souris et la fréquence de rafraîchissement.

4

Audio format

Si «NULL», l'audio ne sera PAS enregistré.

Exemple

Nous capturerons une vidéo de l'exécution simple du test - calcul du pourcentage.

import java.io.File;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import java.awt.*;

import org.apache.commons.io.FileUtils;

import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.By;

import org.monte.media.math.Rational;
import org.monte.media.Format;
import org.monte.screenrecorder.ScreenRecorder;

import static org.monte.media.AudioFormatKeys.*;
import static org.monte.media.VideoFormatKeys.*;


public class webdriverdemo {
   private static ScreenRecorder screenRecorder;
   
   public static void main(String[] args) throws IOException, AWTException {
      GraphicsConfiguration gconfig = GraphicsEnvironment
         .getLocalGraphicsEnvironment()
         .getDefaultScreenDevice()
         .getDefaultConfiguration();
      
      screenRecorder = new ScreenRecorder(gconfig,
         new Format(MediaTypeKey, MediaType.FILE, MimeTypeKey, MIME_AVI),
         new Format(MediaTypeKey, MediaType.VIDEO, EncodingKey,
            ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE,
            CompressorNameKey, ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE,
            DepthKey, (int)24, FrameRateKey, Rational.valueOf(15),
            QualityKey, 1.0f,
            KeyFrameIntervalKey, (int) (15 * 60)),
         new Format(MediaTypeKey, MediaType.VIDEO,
            EncodingKey,"black", FrameRateKey, Rational.valueOf(30)), null);
      
      WebDriver driver = new FirefoxDriver();
      
      // Start Capturing the Video
      screenRecorder.start();
      
      // Puts an Implicit wait, Will wait for 10 seconds before throwing exception
      driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
      
      // Launch website
      driver.navigate().to("http://www.calculator.net/");
      
      // Maximize the browser
      driver.manage().window().maximize();
      
      // Click on Math Calculators
      driver.findElement(By.xpath(".//*[@id = 'menu']/div[3]/a")).click();
      
      // Click on Percent Calculators
      driver.findElement(By.xpath(".//*[@id = 'menu']/div[4]/div[3]/a")).click();
      
      // Enter value 10 in the first number of the percent Calculator
      driver.findElement(By.id("cpar1")).sendKeys("10");
      
      // Enter value 50 in the second number of the percent Calculator
      driver.findElement(By.id("cpar2")).sendKeys("50");
      
      // Click Calculate Button
      driver.findElement(By.xpath(".//*[@id = 'content']/table/tbody/tr/td[2]/input")).click();
      
      // Get the Result Text based on its xpath
      String result =
         driver.findElement(By.xpath(".//*[@id = 'content']/p[2]/span/font/b")).getText();

      File screenshot = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
      FileUtils.copyFile(screenshot, new File("D:\\screenshots\\screenshots1.jpg"));

      // Print a Log In message to the screen
      System.out.println(" The Result is " + result);
      
      // Close the Browser.
      driver.close();
      
      // Stop the ScreenRecorder
      screenRecorder.stop();
   }
}

Production

La vidéo enregistrée est enregistrée dans le dossier «C: \ users \ <<UserName>> \ Videos» comme indiqué ci-dessous.