我们可以通过set和get来对参数进行封装,这样既能提高代码的安全性,也能在不同的类中进行传参
下面举一个例子:
import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.firefox.FirefoxProfile; /* *设置变量的set和get方法;用于传值和取值;其中set是传值,get是取值 */ public class LoginCenter { //设置打开浏览器的默认方式 private FirefoxProfile profile = new FirefoxProfile(new File("C:\\Users\\qinfei\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\sdk")); private WebDriver driver=new FirefoxDriver(profile); private String baseUrl; //传递打开浏览器的方式,如果传入空值,那么设置成默认值 public void setWebDriver(WebDriver dri){ if(dri!=null){ driver=dri; } } // 获取打开浏览器的方式 public WebDriver getWebDriver(){ return driver; } //设置变量url,用于存放浏览器地址 public void setbaseUrl(String url){ if(url!=null){ baseUrl=url; } } //获取浏览器地址 public String getbaseUrl(){ return baseUrl; } } |
再新建一个类,调用LoginCenter类中的变量
import org.openqa.selenium.WebDriver; public class Test101 { public static void main(String[] args){ WebDriver dri=null; String url; //调用封装的类,这里需要实例化 LoginCenter lo=new LoginCenter(); //调用LoginCenter类中的setbaseUrl方法,用于传值 lo.setbaseUrl("http://www.baidu.com"); //传值之后,再来取值 url=lo.getbaseUrl(); //这里没有调用LoginCenter类中的setWebDriver方法,那么以默认方式打开浏览器 dri=lo.getWebDriver(); //实例化Test101类 Test101 t1=new Test101(); //调用Test101类中的 test方法,传入打开浏览器的方式和浏览器的地址 t1.test(dri, url); } public void test(WebDriver dri,String url){ //通过get方法来设置浏览器地址 dri.get(url); } } |
以java application的方法运行,如图:
最终运行的效果为: