当前位置: 首页 > 知识库问答 >
问题:

JAVA通过TestNG selenium automation打开另一个页面时lang.ExceptionInInitializeError

郭星文
2023-03-14

我使用了两页的POM模型。登录页

PS.它是工作正常,如果返回类型被更改为无效的验证登录().

参考BaseTest。

public class BaseTest 
{
    public static WebDriver driver ;
    public static String chrome_path ="/home/downloads/chromedriver";
   public static String property_file_path ="/home/CompleteMotorJourneyAutoTest/src/test/java/com/qa/utils/loginDetails.properties";
    
    public BaseTest()
    {
        try {
            FileInputStream fis = new FileInputStream(property_file_path);
            Properties prop = new Properties();
            prop.load(fis);         
            }catch(Exception e) {System.out.println("Exception occured during reading the property file !");}
    }
    
    public static void initialization() 
    {           System.setProperty("webdriver.chrome.driver",chrome_path);
                driver=new ChromeDriver();          
        driver.get(prop.getProperty("URL"));
    }
}

登录页

public class LoginPage extends BaseTest
{
    @FindBy(xpath="//*[@id=\"loginform\"]/div[1]/div[2]/input")
    WebElement email_id_field;
    @FindBy(xpath="//*[@id=\"loginform\"]/div[2]/div[2]/input")
    WebElement password_field;
    @FindBy(xpath="//*[@id='loginform']/input")
    WebElement login_button_Field;

    public LoginPage()
    {       PageFactory.initElements(driver, this);     }

    public HomePage verifyLogin(String username,String password) 
    {   email_id_field.sendKeys(username);
        password_field.sendKeys(password);
        login_button_Field.click();
        return new HomePage();
    }
}

登录测试

public class LoginTest extends BaseTest 
{   LoginPage loginpage;
    HomePage homepage;  

    public LoginTest() 
    {   super();    }

    //Browser initialization/Environment setup  <----------------------
    @BeforeMethod                               
    public void setup() 
    {   initialization();
        loginpage = new LoginPage();    }

    //login with correct credentials            <----------------------
    @Test(priority=0)
    public void loginWithCorrectCredentials() 
    {       homepage=loginpage.verifyLogin(prop.getProperty("login_id"),prop.getProperty("login_password")); 
    }
    
    //Browser closure                           <----------------------
    @AfterMethod
    public void tearDown()
    {   driver.quit();      }
}

我也需要测试一下主页,但自从得到它后就被卡住了

[RemoteTestNG] detected TestNG version 7.0.1
Starting ChromeDriver 86.0.4240.22 (398b0743353ff36fb1b82468f63a3a93b4e2e89e-refs/branch-heads/4240@{#378}) on port 8944
Only local connections are allowed.
Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe.
ChromeDriver was started successfully.
Oct 28, 2020 3:55:51 PM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: W3C
FAILED CONFIGURATION: @BeforeMethod setup
java.lang.ExceptionInInitializerError
    at com.qa.testpages.LoginPage.verifyLogin(LoginPage.java:115)
    at com.qa.testcase.HomeTest.setup(HomeTest.java:35)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:566)
    at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:134)
    at org.testng.internal.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:63)
    at org.testng.internal.ConfigInvoker.invokeConfigurationMethod(ConfigInvoker.java:348)
    at org.testng.internal.ConfigInvoker.invokeConfigurations(ConfigInvoker.java:302)
    at org.testng.internal.TestInvoker.runConfigMethods(TestInvoker.java:695)
    at org.testng.internal.TestInvoker.invokeMethod(TestInvoker.java:523)
    at org.testng.internal.TestInvoker.invokeTestMethod(TestInvoker.java:173)
    at org.testng.internal.MethodRunner.runInSequence(MethodRunner.java:46)
    at org.testng.internal.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:816)
    at org.testng.internal.TestInvoker.invokeTestMethods(TestInvoker.java:146)
    at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:146)
    at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:128)
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
    at org.testng.TestRunner.privateRun(TestRunner.java:766)
    at org.testng.TestRunner.run(TestRunner.java:587)
    at org.testng.SuiteRunner.runTest(SuiteRunner.java:384)
    at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:378)
    at org.testng.SuiteRunner.privateRun(SuiteRunner.java:337)
    at org.testng.SuiteRunner.run(SuiteRunner.java:286)
    at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:53)
    at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:96)
    at org.testng.TestNG.runSuitesSequentially(TestNG.java:1187)
    at org.testng.TestNG.runSuitesLocally(TestNG.java:1109)
    at org.testng.TestNG.runSuites(TestNG.java:1039)
    at org.testng.TestNG.run(TestNG.java:1007)
    at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
    at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
    at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
Caused by: java.lang.NullPointerException
    at com.qa.testpages.HomePage.<clinit>(HomePage.java:32)
    ... 34 more

SKIPPED CONFIGURATION: @AfterMethod tearDown

有人能帮忙吗。提前感谢!

共有1个答案

裴卓君
2023-03-14

关门了。问题在于主页。具有XPath的java类

 类似资料:
  • 本文向大家介绍Asp.net中通过Button打开另一个的frm,包括了Asp.net中通过Button打开另一个的frm的使用技巧和注意事项,需要的朋友参考一下 废话不多说了,直接给大家贴代码了,代码中有注释,大家多看看。 以上所述是小编给大家介绍的Asp.net中通过Button打开另一个的frm,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对呐喊

  • 你想做的第一件事也许是使用WebDriver打开一个链接。 常规的方法是调用 get 方法: driver.get("http://www.google.com") WebDriver 将等待,直到页面完全加载完毕(其实是等到 onload 方法执行完毕), 然后返回继续执行你的脚本。 值得注意的是,如果你的页面使用了大量的Ajax加载, WebDriver可能不知道什么时候页面已经完全加载。

  • 问题内容: 我有一个JFrame和JPanel, 里面装满了 带有 动作监听器的Jsomethings 。当用户单击一个对象时,我想打开另一个JFrame。这是我所做的: (RejectApp调用一个新的JFrame。)因此,另一个JFrame在屏幕上打开,带有更多选项。它可以正常工作(到目前为止),但是我想知道这个标准吗?我的意思是这样调用main方法?另一个问题是,不使用cardlayout(

  • 问题内容: 我有两个页面-“页面1”和“页面2”。在第1页上,有一个文本框,其值例如为100,最后是一个按钮。 通过按下按钮,我希望javascript将文本框的值保存在全局(?)变量中,然后跳转到第2页。使用“ window.onload”,我想要第二个Javascript函数来提醒保存在page1的值。 这是我的Javascript代码: 在“页面1”上,我有一个带有以下内容的发送按钮: 它启

  • 本文向大家介绍用js通过url传参把数据从一个页面传到另一个页面,包括了用js通过url传参把数据从一个页面传到另一个页面的使用技巧和注意事项,需要的朋友参考一下 用js把数据从一个页面传到另一个页面的层里? 如果是传到新页面的话,你网站基于什么语言开发直接用get或者post获取,然后输出到这个层 通过url传参 如果是HTML页面的话JS传到新页面就window.location.href='

  • EDIT2:测试过了。这无疑是新JPanel的一个问题。 解决方案:正如建议的那样,答案是我忘了明确地将我的JPanel设置到JFrame上。改变: 到 这对我很管用! 我的问题是JFrame的一个奇怪行为。 在我的代码中,我的主机上有一个单选按钮。按下时,会打开另一个框架。 在我的新框架里,我做了一个JPanel。在添加JPanel之前,另一个框架没有冻结,所以我相信问题与新的JPanel有关。