SelectorsHub for chrome – Easy And Free xpath and css selectors in selenium Webdriver

We have used many different tools and methods to find XPath and CSS selectors for selenium webdriver. But SelectorsHub chrome extension is Next generation XPath and CSS selectors which is invented and created by Sanjay Kumar. selectorshub for chrome is very smart and intelligent IDE using which you can build XPath and CSSSelectors within 5 seconds without loosing … Read more

Selenium WebDriver Test Automation on BrowserStack

BrowserStack is web cloud platform which provides us an environment to test web and mobile applications on different version combinations of OS and browsers. BrowserStack provides limited access in Free trial version but you can get full access in Paid version’s different plans. Many of you already aware about it’s different features and usage. But … Read more

Using deleteAllCookies() to Delete all cookies in Selenium WebDriver

Earlier we already learn different selenium webdriver methods to add cookie, get cookies detail by name and all cookies. Sometimes you also need to delete all cookies in selenium webdriver test. You may experience where website is asking for permission to run and use cookies when you first time visit the site. Cookies is piece … Read more

Using deleteCookieNamed() and deleteCookie() to delete cookies in selenium WebDriver

Earlier we learnt how to add cookie and get cookie details using different methods like addCookie(), getCookieNamed() and getCookies(). Sometimes you also need to delete cookies in selenium. Selenium delete cookies can be done using deleteCookieNamed() or passing cookie object in deleteCookie() method. Let’s see how to use deleteCookieNamed() and deleteCookie() to delete cookies in selenium test. Selenium … Read more