importorg.openqa.selenium.WebElement;//导入方法依赖的package包/类@Action(object = ObjectType.BROWSER, desc ="Check all the check boxes in the context")publicvoidcheckAllCheckBoxes(){try{ List<WebElement> checkboxes = Driver.findElements(By.cssSelector("input[type=checkbox]"));if(checkboxes.isEm...