📜  什么是测试基类 - 无论代码示例

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

代码示例1
● Test Base class is class where I have most used methods in my tests.
● My test classes extend the Test Base class and it has 
access to those methods. This helps me to make my 
code reusable
● Before/after test methods wait/synchronization utility methods.
○ SwitchToWindow(title)
○ WebDriver driver;