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

org.jspringbot.keyword.selenium.web.ScrollToElement Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package org.jspringbot.keyword.selenium.web;

import org.jspringbot.KeywordInfo;
import org.jspringbot.keyword.selenium.AbstractSeleniumKeyword;
import org.springframework.stereotype.Component;

@Component
@KeywordInfo(
        name = "Scroll To Element",
        parameters = {"locator"},
        description = "classpath:desc/ScrollToElement.txt"
        )
public class ScrollToElement extends AbstractSeleniumKeyword {

    @Override
    public Object execute(Object[] params) throws Exception{
        helper.scrollToElement(String.valueOf(params[0]));

        return null;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy