0

几周前我开始使用硒。我这样设计了我的测试

  1. 使用@BeforeClass 我正在创建一个对象并调用一个打开浏览器并执行登录操作的类方法。
  2. 我有另一种方法,其中包含我想要执行的测试操作的硒代码,在我的情况下是边界值分析
  3. 现在我创建了一个@Test 方法,它调用这个先前的方法并将测试所需的值传递给它

我面临的问题是 1. 浏览器启动并且登录操作开始,之后浏览器尝试再次打开主页。2.我想知道这是否是编写硒测试脚本的正确方法

另外,如果我删除第 1 步并在第 2 步中包含登录方法,我的测试运行良好我在 grails 上的 groovy 上使用 selenium-rc 和 STS

一类代码

void candidatelogin() {
        selenium.open("/jeepnee/")
        selenium.click("link=Login")
        selenium.type("id=username", "csv_candidate4@trashmail.net")
        selenium.type("id=j_password", "kanishka1")
        selenium.click("id=submit")
        selenium.waitForPageToLoad("60000")
    }

以上部分我从下面的代码中调用

class CandidateEditProfileInfoFunctionalTests extends GroovyTestCase{

public String addressone="nejshdgfbvxczaqwer1y2io3lkjh7dg*lakiqwerjshag"
    @BeforeClass
    static void setUp() {
        GeneralTests candidate= new GeneralTests()
        candidate.candidatelogin()
    }


void EditProfileInfoFail(String streeta, String streetb, String city, String state, String zip, String mobilecountry, String mobilearea, String mobilephone, String landlinecountry, String landlinearea, String landlinenumber) {
        selenium.waitForPageToLoad("60000")
        selenium.click("link=My Profile")
        selenium.waitForPageToLoad("80000")
        selenium.click("id=editProfile")
        selenium.waitForPageToLoad("80000")
        selenium.type("id=street1", streeta)
        selenium.type("id=street2", streetb)
        selenium.type("id=city", city)
        selenium.type("id=state", state)
        selenium.type("id=zip", zip)
        selenium.select("id=country", "label=Philippines")
        selenium.type("id=mobileCountryCode", mobilecountry)
        selenium.type("id=mobileAreaCode", mobilearea)
        selenium.type("id=mobilePhoneNumber", mobilephone)
        selenium.type("id=landlineCountryCode", landlinecountry)
        selenium.type("id=landlineAreaCode", landlinearea)
        selenium.type("id=landlinePhoneNumber", landlinenumber)
        selenium.click("id=submit")
        selenium.waitForPageToLoad("80000")
        assertTrue(selenium.isTextPresent("Please complete the required fields"))
        assertEquals("Candidate Creation - Step 2", selenium.getTitle())
    }
    @Test
    void homeCountryOnFailureShowsErrorMessage(){
        EditProfileInfoFail(addressone, "aaa", "bangalote", "karnataka", "1234", "11", "222", "12345", "11", "22", "5432")

    }
}
4

1 回答 1

1

您的任何逻辑是否在您的 @BeforeClass 方法中重复?该方法运行一次以设置所有测试方法所需的任何依赖项。听起来此方法中的逻辑在步骤 2 中有些重复。似乎可以删除步骤 2 中打开主页的代码,因为它发生在您的 @BeforeClass 方法中。如果您的后续测试需要返回主页,最好更改为 @Before 注释,然后它将在每次测试运行之前运行该代码。

于 2012-04-30T12:44:05.853 回答