📜  框架中的继承 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:54.689000             🧑  作者: Mango

代码示例1
I have created my PageBase class as super
class of the all page classes. 
I have collected all common elements
and functions into PageBase class and
all other page classes extent PageBase class.
By doing so, I don't have to locate very
common WebElements and it provides
reusability in my framework.