How To Set/Get Window Position And Size In Selenium WebDriver

Sometimes you need to set window position and size or get window size and position In selenium software test. Selenium webdriver software testing tool has many useful methods using which we can play with web browser window for different purpose. One of them Is window().maximize(); which we use In each and every webdriver software test to … Read more

How To Record Selenium WebDriver Test Execution Video

If you can record full video for your selenium test execution automatically then It can be great feature for you. I think many of you are already aware about HOW TO CAPTURE SCREENSHOT of web page during test execution In selenium. Very only few people will be aware about video recording of screen for selenium … Read more

How To Verify Scroll Present On Browser In Selenium WebDriver Test

Earlier in previous post, We learnt how to scroll down or up In webdriver browser Instance using javascript executor. Sometimes you also need to verify presence scroll bar on page. WebDriver do not have any built In method using which you can check the present of scroll bar. But yes, You can do It by executing … Read more

Scroll Down-Up Web Page Using Javascript Executor In Selenium Webdriver

Yes, We can scroll down page using javascript executor In selenium webdriver. If you remember, Earlier I have posted many different posts where we can use javascript executor to perform different actions on web page like Highlighting Element, Generating Alert, Get Domain Name, Get Page Title etc.. Now If you needs to scroll down the … Read more