Access PAGE from browser library

Hi all, is there any chance to access PAGE element within the browser tests?
The reasoning behind this is that ‘page’ object have more than keywords that are exposed. (Page | Playwright Python)

Eg. waitForTimeout,

In selenium tests (selenium Library) I can access driver object, that can be used to call any functions that are parts of this object. So is here any chance to get Page Object to do the same?

Thanks

Not directly from Python side because our page lives in the node side. But it’s possible by creating JS extension https://marketsquare.github.io/robotframework-browser/Browser.html#Extending%20Browser%20library%20with%20a%20JavaScript%20module

1 Like