Answers for "What is test base Class"

0

What is test base Class

● 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;
Posted by: Guest on June-16-2021

Browse Popular Code Answers by Language