What Is Maven? Why Do We Use Maven In Selenium?

What Is Maven? Apache Maven Is Powerful Java project management and build management tool. That means we can manage java project builds very easily using maven. Maven can helps you to minimize your project and build management time and efforts. It Is fine to manage project manually If It Is small. But If project Is … Read more

Reading Pie Chart Tool Tip Value In Selenium WebDriver Test

Many web applications contains charts to show different data In chart view. One of the chart they are using Is Pie chart. It Is very Important for us to know how to automate these pie charts In selenium WebDriver test. Few of the charts are very easy to automate but It Is very hard to … Read more

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