2017-04-12 60 views
0

我遇到试图运行的testng.xml来回命令行,因为它会自动返回,当一个问题:enter image description here永远的testng.xml返回“总的测试运行:0”

如果我逃避的testng.xml日食(ProjectName-> testng.xml-> rightClick->运行原样> TestNG的套房)的所有工程确定: enter image description here 从类的代码:`

package TestNGZ; 

import io.appium.java_client.android.AndroidDriver; 

import java.net.MalformedURLException; 
import java.net.URL; 


import org.openqa.selenium.By; 

import org.openqa.selenium.remote.DesiredCapabilities; 
import org.openqa.selenium.support.ui.ExpectedConditions; 
import org.openqa.selenium.support.ui.WebDriverWait; 
import org.testng.Assert; 

import org.testng.annotations.Test; 

public class ClassOne { 

AndroidDriver dr; 

    @Test 
    public void call() throws MalformedURLException{ 

     DesiredCapabilities capabilities = new DesiredCapabilities(); 
     capabilities.setCapability("deviceName", "Nexus5"); 
     capabilities.setCapability("platformVersion", "6.0"); 
     capabilities.setCapability("platformName", "Android"); 
     capabilities.setCapability("appPackage", "com.age.wgg.appspot"); 
     capabilities.setCapability("appActivity", "com.age.wgg.appspot.Main"); 

     dr = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities); 
    } 
    @Test 
    public void login() throws InterruptedException { 

     String buttonCheckLogIn = "Settings"; 

     WebDriverWait wait = new WebDriverWait(dr,30); 

     //Implicit Wait 
    // dr.manage().timeouts().implicitlyWait(1,TimeUnit.SECONDS); 

     //Explicit Wait 
     wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//android.widget.Button[5]"))); 
     //Tap on FB Login 
     dr.findElement(By.xpath("//android.widget.Button[5]")).click(); 

     wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//android.widget.EditText[1]"))); 

     //Insert Username 
     dr.findElement(By.xpath("//android.widget.EditText[1]")).click(); 
     dr.getKeyboard().sendKeys("[email protected]"); 
     //Insert Password 
     dr.findElement(By.xpath("//android.widget.EditText[2]")).click(); 
     dr.getKeyboard().sendKeys("Gameloft2013"); 
     //Tap on Log In button 
     dr.findElementByAccessibilityId("Log In ").click(); 


     //Explicit Wait 
     wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//android.view.View"))); 
     //Tap OK in Confirmation Prompt 
     dr.findElementByAccessibilityId("OK ").click(); 

     //Explicit Wait 
     wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//android.widget.Button[5]"))); 

     //Verification if the Login was successfully or not 
     if (dr.findElement(By.xpath("//android.widget.Button[5]")).getText().equals(buttonCheckLogIn)) { 
      System.out.println("Log In ===> Success"); 
     } else { 
     System.out.println("Log In ===> Failed"); 

     } 
    } 

    @Test 
    public void logout() throws InterruptedException { 

     String buttonCheckLogOut = "Log in"; 

     //Verifying FB Log out functionality 
     dr.findElement(By.xpath("//android.widget.Button[5]")).click(); 
     dr.findElement(By.name("Logout")).click(); 
     dr.findElement(By.name("YES")).click(); 

     Assert.assertTrue(dr.findElement(By.xpath("//android.widget.Button[5]")).getText().equals(buttonCheckLogOut)); 
     //Verification if the Log out was successfully or not 
     if (dr.findElement(By.xpath("//android.widget.Button[5]")).getText().equals(buttonCheckLogOut)) { 
      System.out.println("Log Out ===> Success"); 
     } else { 
     System.out.println("Log Out ===> Failed"); 

     } 

     //Kill Session 
     dr.quit(); 
    } 
}` 

在命令行中我执行以下命令:

java -cp "C:\Users\Ionut B\Downloads\eclipse-java-kepler-SR1-win32-x86_64\eclipse\plugins\org.testng.eclipse_6.11.0.201703011520\lib\*;C:\Users\Ionut B\workspace\TestZero\bin" org.testng.TestNG testng.xml 

Appium服务器正在运行,模拟器已打开。 我已经搜遍了所有,但我没有找到解决办法,也许有人从这里可以帮助我。 谢谢。

回答

0

我发现有什么问题。 在libs“... \ lib *”的路径中,它必须是在Eclipse中也使用的所有.JAR,在这种情况下,路径仅用于testng.jar,因此在Projects文件夹中,我创建了一个lib Eclipse中使用所有Jar文件的文件夹。 谢谢。