All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.onevizion.uitest.api.helper.ListboxJs Maven / Gradle / Ivy

package com.onevizion.uitest.api.helper;

import org.openqa.selenium.WebElement;
import org.springframework.stereotype.Component;

@Component
class ListboxJs extends Js {

    void scrollToElementInListbox(WebElement webElement) {
        execJs3("arguments[0].parentNode.parentNode.scrollTop = arguments[0].offsetTop;", webElement);
    }

    Boolean isReadyListbox(String listboxId) {
        return Boolean.valueOf(execJs("return " + listboxId + ".listBox.isReady == true;"));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy