-
There is the Browser library which is based on playwright and is developed by the same guys who've build SeleniumLibrary. How is this library different from the Browser library? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Thanks a lot for you question. robotframework-puppeteer first we aim to use puppeteer library as our lower layer. The Library major goal are:
|
Beta Was this translation helpful? Give feedback.
Thanks a lot for you question.
robotframework-puppeteer first we aim to use puppeteer library as our lower layer.
But while waiting for the python library. We enhance the lower layer to able to plug and play with another engine like playwrights.
The Library major goal are:
Flexibility: create a web test library that has the same interface (keyword) and still allow to use of different lower test library (playwright, puppeteer)
Stable: by relying on officials and reducing dependency as much as possible
The lower level implementation for robotframework-puppeteer is different from Brower library.
robotframework-puppeteer will use the official python library to connect to the playwright di…