有没有一种方法可以串联在页面对象模型中捕获的两个定位器?

时间:2019-03-16 06:18:21

标签: selenium selenium-webdriver

@FindBy(how=How.CSS, using="#select-lov > a:nth-child(1)")
WebElement CategoryDropDownlink;

@FindBy(how=How.CSS, using="div[id*='listbox-label']")  
WebElement ListBoxPath;

By path="By.cssSelector("+CategoryDropDownListCount+">li:nth-child("+i+")>"+ListBoxPath;

driver.findElement(path).getAttribute("aria");

我们可以将这两个定位符连接到path变量中吗?

0 个答案:

没有答案