如何处理Selenium Java中的可重用组件?
示例
对于家长班。
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Baseclass {
public void login() throws IOException {
Properties prop = new Properties();
//Reading values from property file
FileInputStream ips = new FileInputStream(
"C:\\Users\\ghs6kor\\eclipse- workspace\\Inheritance\\config.properties");
prop.load(ips);
System.setProperty("webdriver.gecko.driver", "C:\\Users\\ghs6kor\\Desktop\\Java\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.get(prop.getProperty("url"));
}
}示例
对于儿童班。
import java.io.IOException;
public class Child extends Baseclass {
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
Child c = new Child();
c.login();
c.testinheritance();
}
public void testinheritance() {
// parent class method used in child class
login();
System.out.println("Test Inheritance");
}
}热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志