无法解决pom.xml中的符号`webdriver.chrome.driver`



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>

${webdriver.chrome.driver}引用块中的属性。您没有定义此属性。您可能想用要使用的Web驱动程序的正确值添加此块

<properties>
        <webdriver.chrome.driver>my web driver</webdriver.chrome.driver>
    </properties>

最新更新