Browsers Setting
package WebdriverStart; import org.openqa.selenium.PageLoadStrategy; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.firefox.FirefoxOptions; import org.openqa.selenium.firefox.FirefoxProfile; import org.openqa.selenium.firefox.internal.ProfilesIni; public class Firefoxprofiler { public static void main(String[] args) { //###################For selenium console data // System.setProperty(FirefoxDriver.SystemProperty.BROWSER_LOGFILE,"null");//no file will be generated at console System.setProperty(FirefoxDriver.SystemProperty.BROWSER_LOGFILE,"G:\\Prac_data\\testlog.txt");//no file will be generated at console // #################binary file(FirefoxOptions class) FirefoxOptions options= new FirefoxOptions(); options.setBinary("path of the firefox exe");//if selenium doesnt find the firefox.exe //##############PageLoadStrategy#################(FirefoxOptions class...