Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
Nisha14
Posts : 1
Join date : 2014-12-17

How to scroll down for specific div on page using Selenium TestNG Empty How to scroll down for specific div on page using Selenium TestNG

Mon Dec 22, 2014 1:25 pm
Hello,

I am new in Selenium, we are using Selenium TestNG. in my method i need to do scroll down to find out the element dynamiically. 
Scroll down of specific div of page. Please if anyone knows about it then guide.

Thanks.
avatar
shweta.bet
Posts : 7
Join date : 2014-11-14
Age : 41

How to scroll down for specific div on page using Selenium TestNG Empty Re: How to scroll down for specific div on page using Selenium TestNG

Wed Dec 24, 2014 5:21 pm
You can scroll down by one page by using below snippet



Code:

JavascriptExecutor js = (JavascriptExecutor)

[i][size=16][color=#0000c0][size=16][color=#0000c0]driver[/color][/size][/color][/size][/i][size=16][color=#0000c0][size=16][color=#0000c0][/color][/size][/color][/size][size=16];[/size]
[size=16]
[/size]

      js.executeScript(

[size=16][color=#2a00ff][size=16][color=#2a00ff]"window.scroll(0, 350);"[/color][/size][/color][/size][size=16]);[/size]
avatar
nabhanya.varma
Active particpant
Active particpant
Posts : 13
Join date : 2014-03-02

How to scroll down for specific div on page using Selenium TestNG Empty Re: How to scroll down for specific div on page using Selenium TestNG

Sun Jan 25, 2015 8:30 pm
You can try using JavaScriptExecutor.

There is a way where you can scroll to particular element. below is the code snippet.


Code:
((JavascriptExecutor) driver).executeScript(
                "arguments[0].scrollIntoView();", element);



There are different ways of scrolling a page. You can also refer the below url for more details on scroll. 

http://seleniumeasy.com/selenium-tutorials/scrolling-web-page-with-selenium-webdriver-using-java
avatar
AgoBalan
Amateur
Amateur
Posts : 36
Join date : 2015-02-23

How to scroll down for specific div on page using Selenium TestNG Empty Re: How to scroll down for specific div on page using Selenium TestNG

Mon Feb 23, 2015 3:48 pm
see you are question is not more specific, please refining it ito the excat issues..

if page scroller is Browser scroller,den no need to scroll it separately,Selenium WEbDriver is able to find the element even it is at eh bottom of the page..

if the scroll is programatically done in the web application, that is application itself completely dynamic .. you can click on the scrool down (DOWN arrow of the scroll ) until u reach your element..
Sponsored content

How to scroll down for specific div on page using Selenium TestNG Empty Re: How to scroll down for specific div on page using Selenium TestNG

Back to top
Permissions in this forum:
You cannot reply to topics in this forum