I am new to serenity and uploaded the basic project from maven and trying to run on chrome . when I am trying to run on chrom it is throwing error " web driver could not be instanitated"
I have changed the basic POM as below
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<serenity.version>1.1.26-rc.3</serenity.version>
<serenity.cucumber.version>1.1.1</serenity.cucumber.version>
<webdriver.driver>firefox</webdriver.driver>
</properties>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<skip>true</skip>
<systemPropertyVariables>
</systemPropertyVariables>
</configuration>
</plugin>
Any help would be appreciated