Using Atata framework, can we connect to database and perform database operations?
I was not able to find any template related to database in atata framework tutorial.
I know that we can connect to database using Selenium drivers.Just wanted to know whether it is possible through atata.
public static int DBTest(IWebDriver session, string connString)
{
var DBConnection = new SqlConnection(connString);
DBConnection.Open();
}
No reference for database conn in atata found.please help