There is actually no issue with the type of the url property here, the issue linked above is more of a documentation issue.
By default, the url property is set to a string type here. To set it to a function type instead, the fifth type parameter of the EnhancedPageObject interface can be used:
Fixes: #3903
There is actually no issue with the type of the
url
property here, the issue linked above is more of a documentation issue.By default, the url property is set to a string type here. To set it to a function type instead, the fifth type parameter of the
EnhancedPageObject
interface can be used:See the usage of the
EnhancedPageObject
interface here for reference.