What Is Headless/htmlunitdriver? How To Execute WebDriver Test In It?

What Is HtmlUnit Driver or Headless browser driver? HtmlUnit Driver or mostly It Is known as Headless browser driver Is based on HtmlUnit. HtmlUnit Driver Is same as Firefox or Chrome or IE driver Instance but HtmlUnit driver do not have GUI so you can not see your test execution on your screen. It Is something like … Read more

How To Delete Specific/All Cookies In Selenium WebDriver Test

Earlier we learnt how to extract all cookies of current domain In THIS POST and add new cookie for that specific domain In previous post In selenium WebDriver test. Cookies plays very Important role In any website and you must know how to add new cookie or delete specific or all cookies If you are test … Read more

How To Add New Cookie When Executing Selenium WebDriver Test

Earlier we learnt how to extract and print current domain cookie during test execution using selenium WebDriver In previous post. Sometimes you have a requirement like you have to add new cookie for website under test during selenium WebDriver test execution for some kind of testing purpose. Is It possible? Yes, Selenium WebDriver has Inbuilt class … Read more

How To Extract Domain Cookie In Selenium WebDriver Test

You must know what Is cookies before learning how to extract or manage cookies In selenium WebDriver. Cookies are small text files created by website when you access It to remember some data for you to use It In future. Cookies contains domain name for which It Is created, Cookie name and Its value. It also … Read more