我有一个存储字符串的代码。
getEnvironmentValue = Environment1;
我只需要点击Environment1
UI元素。
我尝试使用以下代码,但它无效。
getEnvironmentValue = Environment1; (the value is dynamic based on the environment)
WebElement element = driver.findElement(By.name(getEnvironmentValue.toString()));
element.click();
有人可以帮我解决如何点击存储在selenium变量中的字符串值吗?