无法在testng.xml文件中为不同的浏览器运行回归组 [英] Unable to run the Regression group in testng.xml file for different browsers

查看:89
本文介绍了无法在testng.xml文件中为不同的浏览器运行回归组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经配置了testng.xml文件以在不同的浏览器中运行回归组.Below是相同的testng.xml代码。

I have configured the testng.xml file to run the Regression group in different browsers.Below is the testng.xml code for the same.

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">

<suite name="SeleniumSuite" verbose ="1" thread-count = "1" parallel="false">

 <**test** name="FirefoxTest">
  <groups>
        <run>
            <include name="Regression"></include>
        </run>
    </groups>
 <parameter name="browser" value="firefox" />
 <classes>
 <class name="Testscript.Program111_RediffLogin" />
 </classes>

 </test>
 <test name="IETest">
  <groups>
        <run>
            <include name="Regression"></include>
        </run>
    </groups>
 <parameter name="browser" value="ie" />
 <classes>
 <class name="Testscript.Program111_RediffLogin" />
 </classes>
 </test>
</suite>

当我将鼠标悬停在标签上时,会显示错误消息内容元素类型test必须匹配(方法选择器?,参数*,组?,包?,类?)。在Test类级别我已经为回归测试正确定义了所有参数但是我仍然看到testng.xml文件中的错误。你们中的任何一个都可以看看并帮助我!

when I hover the mouse on the tag, it displays an error message as "The content of element type "test" must match "(method-selectors?,parameter*,groups?,packages?,classes?)".At the Test class level I have defined all the parameters properly for the regression test to run.But still I am seeing the error in the testng.xml file.Can any one of you look into this and help me!

请找我的测试用例用于自动化

Please find the test case I am using for the automation

@Test(groups={"Regression"},dataProvider = "hashmapdataprovider",dataProviderClass =Dataprovider.Dataprovider_Hashmap.class,priority=1 )
public void validLogin(Map<String,String> hm) throws IOException
{
    pageobjects.Signin();
driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);    
    OriginalExcelRW Excel = new OriginalExcelRW("F:\\anand_acer\\selenium\\rediffbooks.xlsx");
    XSSFSheet s1 = Excel.Setsheet("Sheet1");
    SoftAssert s_assert = new SoftAssert();
    if (hm.get("Executionflow").contains("anand"))
    {

    pageobjects.Username1(hm.get(Excel.Readvalue(s1, 0, 2)));
    pageobjects.pass1(hm.get(Excel.Readvalue(s1, 0, 3)));
    //s_assert.assertEquals(hm.get(Excel.Readvalue(s1, 0, 2)), hm.get(Excel.Readvalue(s1, 0, 3)), "both the usssser Ideee and password doesnt matches");
    //logger.info("Usssser Ideeee");
    pageobjects.login();
    s_assert.assertTrue(true, "login success");
    //logger.info("The login was success");
    System.out.println("Valid login is passed");
    pageobjects.signout();
    pageobjects.Signin();
    //pageobjects.cleartext();
    }
    s_assert.assertAll();
    }


推荐答案

从错误消息看起来你发布了它们必须采用特殊的缩进顺序吗?

Looks like from the error message you have posted they must be in a special order of indentation?

这是我的XML工作的一个例子

Here is an example of my XML which works

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite verbose="1" name="example suite 1">
    <listeners>
         <listener class-name="ReportListener.ReportListenerClass" />
    </listeners>
    <test name="Logout tests">
        <classes>
            <class name="com.emc.qe.u360.tests.LogoutTests" />
        </classes>
    </test>
    <test name="Login tests">
        <classes>
            <class name="com.emc.qe.u360.tests.LoginPageTests" />
        </classes>
    </test> 
</suite>

这篇关于无法在testng.xml文件中为不同的浏览器运行回归组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆