-2
我有標識符「數據分量=訂單button_guid」組分Xpath的具有可變部分
我想生成的Xpath像
"//*[@data-component='order-button']+applicationId"
有它在形式 order-button_xxxx-xxx-xxx-xxxxxxxx
我有標識符「數據分量=訂單button_guid」組分Xpath的具有可變部分
我想生成的Xpath像
"//*[@data-component='order-button']+applicationId"
有它在形式 order-button_xxxx-xxx-xxx-xxxxxxxx
在單引號(')之前將GUID與xpath連接起來,如下所示。
driver.findElement(By.Xpath("//*[@data-component='order-button+applicationId+']"))
的可能的複製[如何傳遞變量參數成XPath表達式?](https://stackoverflow.com/questions/30352671/how-to-pass-variable-parameter-into-xpath-expression) – kjhughes