child class get undefined value when calling parent function
I’m writing a playwright test and figure out that my application have a lot of similar page structures. So, I try to create an abstract class call BaseApplicationPage with the purpose to reuse them for pages in my application. The abstract class look like this export default abstract class BaseApplicationPage { page: Page; abstract path:… Read More child class get undefined value when calling parent function