This article describes the selenium Operation browser
Read Catalogue
Browser maximize forward, rewind, refresh
Public Static voidTestbrowser (Webdriver driver)throwsException {driver.get ("Http://www.cnblogs.com/tankxiao"); Thread.Sleep (5000); //Browser Maximizationdriver.manage (). window (). Maximize (); Driver.navigate (). to ("Http://www.baidu.com"); //Refresh Browserdriver.navigate (). Refresh (); //Browser Backdriver.navigate (). back (); //Browser Forwarddriver.navigate (). Forward (); //Browser ExitDriver.quit (); }
Operation
Public Static void throws Exception { Driver.get ("http://www.baidu.com"); = ((takesscreenshot) driver). Getscreenshotas (Outputtype.file); New File ("C:\\1.png")); }
Simulating mouse operation
public static void Rightclickmouse (Webdriver driver) { driver.get ("http://www.baidu.com"); Actions action = new actions (driver); Action.contextclick (Driver.findelement (by.id ("kw")). Perform ();
Kill Windows Browser Process
public static void KillProcess () { //kill Firefox windowsutils.trytokillbyname ("Firefox.exe"); Kill IE Windowsutils.trytokillbyname ("Iexplore.exe"); Kill Chrome Windowsutils.trytokillbyname ("Chrome.exe"); }
Manipulating cookies
Java Selenium (10) Operation browser