Selenium Questions Part – 8

Part 8 36 : When I am running software web application’s tests In Firefox Browser using selenium webdriver, It Is not showing me any bookmarks, addons, saved passwords etc. In that browser. Do you know why? Answer : Yes. It Is because all those bookmarks, addons, passwords etc.. are saved In your regular browser’s profile folder so … Read more

Resizing JQuery Resizable Element Using Selenium WebDriver

I have provided different examples of how to deal with J Query elements using selenium WebDriver like Drag and drop element using dragAndDrop method, Drag and drop element using dragAndDropBy method, Selecting multiple Items using clickAndHold method, Moving slider using clickAndHold and moveByOffset method. To perform all these actions/operations, We have used different methods of selenium webdriver advanced user Interactions API … Read more

Selenium WebDriver Questions Part – 7

Part 7 31 : Can you tell me the names of different projects of selenium software automation testing tool? Answer : At present, Selenium software automation testing tool has four different projects as bellow. Selenium IDE : It Is Firefox add-on which allows you to record and playback your software web application’s tests In Firefox browser. Selenium RC : … Read more

How To Move JQuery Slider In Selenium WebDriver

To drag and drop any element on other element, We can use moveToElement or dragAndDrop methods of Actions class as described In THIS POST. Same way, To move element by specific X,Y Pixel offset, We can use dragAndDropBy method of Actions class as described on THIS PAGE. To select multiple JQuery Items, We can use clickAndHold method of … Read more