Implementing Calc Sum Test In Selenium WebDriver DDF

In Previous Step, We have Implemented URL centralization In DDF to make your future URL maintenance easy and you can change test site URL from one place. Now next step Is to write some WebDriver test code. In this step We will Implement simple calc test In our SuiteOneCaseOne.java test case. STEP 26 Prerequisite : … Read more

Reading Site URL From properties File In Selenium WebDriver DDF

In selenium WebDriver Datadriven Framework Creation, We have Implemented functionality of running test cases In different browsers In Previous Step. And for that, you have to change your test browser name at one place only. So now you can set your test browser In Param.properties file. Now next step Is reading site URL from Param.properties file. STEP 25 Prerequisite : … Read more

Selenium Data Driven Framework : Running Test In Different Browsers

We have Implemented loadWebBrowser() and  closeWebBrowser() functions In PREVIOUS POST to centralize browser loading activity. Now supposing you wants to run your webdriver  test In any other browser like Google Chrome then how will you do It? Our framework should have some facility to run selenium webdriver  test In your desired browser. Let us do It.   STEP … Read more

Test Framework For Selenium WebDriver : Implement Load Browser Function

As you know, We have already Introduced Selenium webdriver In our test data driven framework during PREVIOUS POST. And now we are going ahead very slowly to use data driven framework In selenium webdriver tests. STEP 23 Prerequisite : All previous data driven framework creation steps for selenium webdriver should be Implemented. You will get … Read more