Giter Site home page Giter Site logo

Comments (2)

SebastianSedzik avatar SebastianSedzik commented on June 19, 2024 1

Hi @ArCiGo, it seems you encountered errors while trying to install the library. From the logs you provided, it appears that there is a peer dependency conflict in your project. Specifically, you have TypeScript installed in version ^4.9.4, but playwright-decorators requires TypeScript in version 5.1.6 or higher.

The primary objective of this library is to expose Playwright's functionality through TypeScript decorators (Under the hood, it utilizes Playwright annotations). It's worth noting that this library is a work in progress, and our ultimate goal is to empower developers to create their own custom decorators, which can be seamlessly integrated into tests. For instance, you can create custom decorators like @withUser and apply them to your tests in a clean and organized manner, as demonstrated in the code snippet below:

@suite()
class UserPaymentSuite {
  @withUser({ features: ['PAYMENT'] }) // <- create custom decorators
  @test()
  userIsAbleToCancelSubscription() {
    // here user is already logged, and has required features
    // ... test code
  }
}

from playwright-decorators.

SebastianSedzik avatar SebastianSedzik commented on June 19, 2024

@ArCiGo FYI: The library receives the ability to create custom decorators.

For guidance on creating custom decorators, refer to the custom decorators section in readme. Or explore additional examples in the examples directory.

from playwright-decorators.

Related Issues (1)

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.