Code Monkey home page Code Monkey logo

har-capture-extension-selenium's Introduction

har-capture-extension-selenium

Junit 5 extension for Selenium Webdriver and Allure that captures HTTP activity of browser and stores it into HAR file attached to Allure report. Analazying HAR files may be very useful for finding bugs and it's root cause especially when the problem can't be easily reproduced or happens from time to time.

How does it work?

When properly set, the extension starts a proxy server that captures outcoming HTTP requests and starts a chrome instance which is set to use previously created proxy, after the test execution HAR file with HTTP requests attaches to Allure report:

HAR file can be viewed with various services like this:

How to use

Installation

Add jitpack repository to your pom.xml:

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

Add dependency to your dependencies section:

<dependency>
  <groupId>com.github.kotvertolet</groupId>
  <artifactId>har-capture-extension-selenium</artifactId>
  <version>LAST_VERSION</version>
</dependency>

Alternatively, you can copy HarCaptureExtension.class into your project directly.

Then, in your BaseTest(AbstractTest, etc) initialize extension as following:

    private static final ChromeOptions chromeOptions;
    static {
        chromeOptions = new ChromeOptions();
        chromeOptions.addArguments("start-maximized");
    }

    @RegisterExtension
    static HarCaptureExtension harCaptureExtension = HarCaptureExtension.builder()
            .addCapabilities(chromeOptions).build();

Then initialize your webdriver instance with your ChromeOptions(FirefoxOptions, etc). That's it.

Requirements

Junit5, Selenium Webdriver, Allure

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.