Selenium Latest Questions

Part 22 103 : How to customize Firefox browser profile for webdriver software test? Answer : You can do It In two different ways. You can create your desired firefox browser profile before running software automation test and then you can use It In your selenium webdriver software test. VIEW EXAMPLE. You can customize your firefox browser profile run time before launching … Read more

Selecting Checkbox From Table Based On Preceding Or Following Sibling Column Value In WebDriver

Locating element’s by Its own references Is easy but sometime you need to located them based on reference of other elements. Earlier we have learn how to locate checkbox based on Its position In THIS POST. Now I have one table and first column of table Is checkbox. 2nd column Is value(some text) and based … Read more

How To Disable JavaScript Using Custom Profile For selenium WebDriver Test

Many times you need to disable JavaScript In your browser to verify that function or validation Is working fine even If JavaScript Is disabled. Simple example Is you need to disable JavaScript of Firefox browser to check server side validation of Input text field. Enabling or disabling JavaScript Is simple task If you will do It … Read more