在继承方法中,子 class 未从父 class 接收 URL

In Inheritance method the Child class not receiving the URL from the Parent class

这是父 Class 到 运行 ChromeDriver

 package logInCredit;
 
 import org.openqa.selenium.WebDriver;
 import org.openqa.selenium.chrome.ChromeDriver;

 public class  LogInPage  {

 public WebDriver driver ;

 public void LogInCredit() {


 //Open ChromeDriver    
 WebDriver driver= new ChromeDriver();
 driver.get("https://opensource-demo.orangehrmlive.com/");
 driver.manage().window().maximize();
 System.out.println(driver);


 }

 }

This Is Child Class 从父 Class

获取 url
 package afterLogIn;


 import org.openqa.selenium.By;
 import org.openqa.selenium.WebElement;
 import org.testng.annotations.Test;
 import logInCredit.LogInPage;


 public class NextLogIn extends LogInPage {


    @Test
    public void DashboardPage() {
    
    
    System.out.println("driver is " +driver);
    
    
    //Admin UserName Enter
    WebElement AdminUserName = 
    driver.findElement(By.xpath("//input[@name='txtUsername']"));
    AdminUserName.sendKeys("Admin");
    
    //Admin Password Enter
    WebElement AdminPassword = 
    driver.findElement(By.xpath("//input[@name='txtPassword']"));
    AdminPassword.sendKeys("admin123");
    
    //click Login
    WebElement LogInButton = driver.findElement(By.xpath("//input[@id='btnLogin']"));
    LogInButton.click();
    
    
    WebElement ClickAdmin = driver.findElement(By.xpath("//*[text()='Admin']"));
    ClickAdmin.click();
    
    
    WebElement ClickPIM = driver.findElement(By.xpath("//*[text()='PIM']"));
    ClickPIM.click();
}
    
}  

这是我的testng.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Suite">
<test name="After Login Test">
   <classes>
      <class name="afterLogIn.NextLogIn"/>  
   </classes>
</test> <!-- Test -->
</suite> <!-- Suite -->

     

在 运行 运行程序时我得到异常

[RemoteTestNG] detected TestNG version 7.4.0
driver is null
FAILED: DashboardPage
java.lang.NullPointerException
at afterLogIn.NextLogIn.DashboardPage(NextLogIn.java:22)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

来自父 class 的 Webdriver url 没有传递给子 class。他们对我的代码有任何问题吗?当我 运行 父 class 使用 main 方法时,它将浏览器导航到 url 但是当我从子 class 调用时,它不提供相同的 url .

class 成员驱动程序未实例化,在父 class 的方法 logInCreated() 中,您正在使用另一个对象引用(不是 class 成员)。

在 LoginPage 中添加一个无参数构造函数,用于安装驱动程序

public LoginPage(){ driver = new ChromeDriver(); }

并在方法 LogInCredit() 中删除行 WebDriver driver= new ChromeDriver();