webdriver.chrome.driver
在我的项目的pom.xml中没有解析的符号。如何摆脱此错误以及webdriver.chrome.driver
的用途是什么
<configuration>
<trimStackTrace>false</trimStackTrace>
<enableAssertions>true</enableAssertions>
<systemPropertyVariables>
<!-- Pass location of downloaded webdrivers to the tests -->
<webdriver.chrome.driver>${webdriver.chrome.driver</webdriver.chrome.driver>
</systemPropertyVariables>
</configuration>
答案 0 :(得分:0)
${webdriver.chrome.driver}
引用块中的属性。您没有定义此属性。您可能想使用您要使用的Web驱动程序的正确值添加此块
<properties>
<webdriver.chrome.driver>my web driver</webdriver.chrome.driver>
</properties>