27d9a429
suweicheng
开发梳理;
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package com.essa.testSuite;
import com.essa.pageObject.BaseTest;
import org.openqa.selenium.WebDriver;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class TestNoticeReceiveAndLoad extends BaseTest{
WebDriver driver;
@BeforeClass
public void setUp(){
initsetUp();
loginValid("chenyijie");
}
@AfterClass
public void tearDown(){
driver.quit();
}
/**
* 通知收货和通知装柜
*/
@Test(description = "通知收货和通知装柜")
public void NoticeReceiveAndLoad(){
this.driver = getDriver();
}
}
|