How To Set Proxy Settings In Selenium WebDriver Test

Sometimes, You need to set proxy settings of browser to run your selenium webdriver test. As you know, selenium launch fresh browser every time you run test so default proxy setting will be No Proxy. You can set It In two ways. 1. Creating firefox profile and then use that profile In selenium test. 2. … Read more

How To Handle SSL Certificate Error In FF For Selenium WebDriver

Sometimes, When you access site manually In browser It will works fine but shows “This Connection is Untrusted” error when you access same URL through webdriver. So what Is the reason behind this Issue? It Is working fine In default system browser because you already Imported required certificate In that browser. That error will not appear … Read more

How To Handle/Working With IFrame In Selenium WebDriver

Working with Iframes In webdriver was pending post from long time. Earlier we learnt, how to switch between windows In THIS POST. Also we learnt trick to switching between window tabs In THIS POST. If you are working with selenium IDE then you can use “selectframe” command to select and switch to IFrameĀ as described In … Read more

Capturing Page JavaScript Errors Using Selenium WebDriver

It Is very Importnt to find Javascript errors on web page before any application’s release. Generally Test engineer Goes to each and every page manually and check If there Is any java script error on page. It can take very much time. We can automate this task using selenium webdriver Instead of doing It manually. … Read more