Update Record In Database For Selenium WebDriver Test

Main usage of database In selenium WebDriver Is getting records from table and use them In your selenium test as per your requirement. Simple example Is you can use that data to perform data driven testing or you can verify data In tables which you have Inserted through web application forms. Now supposing you wants … Read more

Using where Clause To Get Data From Table Using Selenium WebDriver

Now you are well aware about how to INSTALL MYSQL, CREATING TABLES and ACCESS DATA from MySql data tables for your selenium WebDriver test. You can compare and verify that data or you can use all those data as Input values In some web forms. In previous example, We learnt how to execute simple select … Read more

Fetching Data From MySQL Database Table For Selenium WebDriver Test

Earlier we learnt how to download and Install MySql database In THIS POST and create database and tables to store data In THIS POST. Both these steps are mandatory to read data through test script. Now this Is time to fetch data from MySQL database table using test script. You need to follow bellow given … Read more

MySQL – Creating Data Tables To Use In Selenium WebDriver Test

Before creating tables In MySQL database, It must be Installed In your system. You can read my previous post to know how to download and Install MySQL In windows system. We are going to perform MySQL database testing using selenium WebDriver. So We need to create table Inside database and need to Insert some data … Read more