- Nisha14
- Posts : 1
Join date : 2014-12-17
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.
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.
- shweta.bet
- Posts : 7
Join date : 2014-11-14
Age : 42
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]
- nabhanya.varmaActive particpant
- Posts : 13
Join date : 2014-03-02
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.
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
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
- AgoBalanAmateur
- Posts : 36
Join date : 2015-02-23
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..
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..
- 10 steps to set up Selenium Automation Hybrid Framework with implementing Testng, Log4j, Page Object Model, Data Driven, Modular Driven, Exceptions
- my selenium html file opens the code page rather than web page
- How do I get one page element in another page using Selenium Webdriver(java code)
- How to scroll up the invisible webpage to find out the elements using selenium webdriver?
- Which value should I define, to let selenium to click on all checkboxes, which have a specific css-class?
Permissions in this forum:
You cannot reply to topics in this forum