无法解析 pom.xml 中的符号“webdriver.chrome.driver”
Cannot resolve symbol `webdriver.chrome.driver` in pom.xml
webdriver.chrome.driver
is not resolved symbol in pom.xml of my project.How 来消除这个错误以及 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}
引用块中的 属性。您没有定义此 属性。你可能想用你想使用的网络驱动程序的正确值添加这个块
<properties>
<webdriver.chrome.driver>my web driver</webdriver.chrome.driver>
</properties>
webdriver.chrome.driver
is not resolved symbol in pom.xml of my project.How 来消除这个错误以及 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}
引用块中的 属性。您没有定义此 属性。你可能想用你想使用的网络驱动程序的正确值添加这个块
<properties>
<webdriver.chrome.driver>my web driver</webdriver.chrome.driver>
</properties>