如何在C#selenium webdriver中自动滚动Div? [英] How to scroll the Div automatically in C# selenium webdriver?

查看:308
本文介绍了如何在C#selenium webdriver中自动滚动Div?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用了sendkeys(keys.pagedown)但我需要用高度滚动Div列表。比如Java脚本中的scroll-Top。

是否有可能滚动?





我的代码是:





driver.FindElementByClassName(body)。SendKeys(Keys.PageDown);

I used "sendkeys(keys.pagedown)" but i need to scroll the Div list with height. like scroll-Top in Java script.
Is there any possibilities to scroll?


My code is:


driver.FindElementByClassName("body").SendKeys(Keys.PageDown);

推荐答案

你可以在下面试试,它会集中在你需要的地方,记住根据你的需要定制价值



can you please try below,it will focus where you need to,remeber to customize values according to your need

window.onload = function () {
           SetDetailsFocus();
       }
       function SetDetailsFocus() {
           var divheight = document.getElementById("divSelectedItem");
           var footerheight = document.getElementById("footer");
           var _docHeight =


(document).height();
var scrollposition = _docHeight - (divheight.clientHeight + footerheight.clientHeight + 100 );
window.scrollTo( 0 ,scrollposition);
}
(document).height(); var scrollposition = _docHeight - (divheight.clientHeight + footerheight.clientHeight + 100); window.scrollTo(0, scrollposition); }


这篇关于如何在C#selenium webdriver中自动滚动Div?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆