0

こんにちは、Page Factory を使用して、すべてのロケーターをクラスに保持しています。

@FindBy(xpath="//select[@ng-model='selectedLeadSource']")
    WebElement source_of_lead;
    public Select getSourceOptions() {
        return new Select(source_of_lead);
    }

しかし、エラーが発生するため、待機を使用できません。

wait.until(ExpectedConditions.elementToBeClickable(onPage.getSourceOptions().selectByValue("キャンペーン")));

エラー :

ExpectedConditions 型の elementToBeClickable(By) メソッドは、引数 (void) には適用できません。

4

3 に答える 3