作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我想为我的方法传递两个东西,String - 这将是一个属性名称和By - 这将允许选择应按什么条件搜索元素。简单的例子:
public static WebElement getElement(By by) {
return driver.findElement(by);
}
但这会迫使我这样使用它:
element = getElement(By.className(properties.getProperty("class")));
虽然我想这样使用它:
element = getElement(By.className, "class");
我该怎么做?我认为像这样的简单代码会起作用,但不幸的是它返回错误
"by(String) is undefined"
public static WebElement getElement(By by, String string) {
return driver.findElement(by(properties.getProperty(string));
}
编辑:我决定使用:
public static String useProperty(String propertyName) {
return properties.getProperty(propertyName);
}
不完全是我想要的处理方式,但它确实可以简化并提高代码的可读性。
最佳答案
这是不可能的,By.className()是一个接收 String
参数的方法。这个String
用于初始化内部类By.ByClassName这是返回的By
。
您可以构建 switch case
来处理此问题,例如
public static WebElement getElement(String string) {
By by = null;
String locator = properties.getProperty(string);
switch (string) {
case "class":
by = By.className(locator);
break;
case "id":
by = By.id(locator);
break;
}
return driver.findElement(by);
}
关于java - 如何在 Selenium 测试方法中传递 "By"和字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53408054/
我是一名优秀的程序员,十分优秀!