 image source: [pixabay](https://pixabay.com/) --- 续上期继续探索TestNG的 annotation。 在自动化测试最重要的一个就是数据测试,叫‘数据驱动’测试。 假如在百度搜索搜索关键词,搜索国家名应显示相关国家信息,输入汇率应显示汇率转换器等。 幸好业界很多自动化测试工具都支持‘数据驱动’测试。 TestNG也不例外,可以用`DataProvider` 这个 annotation 来简单实现。不知道该功能的时候,我是用自己写的循环句来实现‘数据驱动’。但现在好了,有更好的方法可以实现了。 装载`@DataProvider` annotation函数必须返回`Object[][]` 或者 `Iterator<Object>`。 属性 `name` 与 `@Test` annotation的 `dataProvider` 属性相连。 下列例子是我用 `@DataProvider`来反复查询。<sub>(不经当事人同意乱使用了steemian的名字,请见谅,如需要删除请回帖,谢谢 ^^)</sub> ``` @DataProvider(name = "steemians") public Object[][] members() { return new Object[][] { {"annepink"}, {"gghite"}, {"lucky2015"}, {"honoru"}, }; } ``` `@Test` annotation的 `dataProvider` 属性与 `@DataProvider`的 `name` 属性值必须一致才可以正常获取steemian名。最后把数据传到函数内即可搜索。 ``` @Test(description = "搜索steemian。", dataProvider = "steemians") public void CASE_04_Search(String name) { driver.get(baseUrl + "/@" + name); /* * Some actions */ } ``` 运行后的报告也很完美。  **Sources:** ``` package com.steem.webatuo; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertNotNull; import static org.testng.Assert.assertTrue; import java.util.List; import java.util.concurrent.TimeUnit; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import io.github.bonigarcia.wdm.WebDriverManager; public class Steemit { WebDriver driver; String baseUrl = "https://steemit.com"; @BeforeClass public void SetUp() { WebDriverManager.chromedriver().setup(); driver = new ChromeDriver(); driver.get(baseUrl + "/@june0620/feed"); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS); } @Test(enabled = false, description = "获取文章列表。") public void CASE_01_GetPosts() { List<WebElement> list = driver.findElements(By.xpath("//div[@id='posts_list']/ul/li")); assertTrue(!list.isEmpty(), "确认是否显示列表。"); for (WebElement post : list) { String title = post.findElement(By.xpath("descendant::h2/a")).getText(); String author = post.findElement(By.xpath("descendant::span[@class='user__name']")).getText(); System.out.println(author + "的文章: " + title); } } @Test(timeOut = 60000, description = "登录。") public void CASE_02_Login() throws InterruptedException { // Click the login button driver.findElement(By.linkText("login")).click(); // type id driver.findElement(By.name("username")).sendKeys("june0620"); // type pw and submit WebElement pw = driver.findElement(By.name("password")); assertNotNull(pw, "确认是否显示密码元素。"); pw.sendKeys(Password.getPw()); pw.submit(); Thread.sleep(5000); } @Test(description = "撰写文章。") public void CASE_03_Write() throws InterruptedException { // Click the write Button List<WebElement> writeBtns = driver.findElements(By.xpath("//a[@href='/submit.html']")); assertEquals(writeBtns.size(), 1, "确认是否显示撰写按钮。"); for (WebElement writeBtn : writeBtns) { if (writeBtn.isDisplayed()) { writeBtn.click(); Thread.sleep(2000); // type Text and Keys WebElement editor = driver.findElement(By.xpath("//textarea[@name='body']")); String keys = Keys.chord(Keys.LEFT_SHIFT, Keys.ENTER); editor.sendKeys("hello!! world", keys, "hello!!! STEEMIT", Keys.ENTER, "안녕, 스팀잇", Keys.ENTER, "你好!似提姆"); break; } } Thread.sleep(5000); } @Test(description = "搜索steemians。", dataProvider = "steemians") public void CASE_04_Search(String name) { driver.get(baseUrl + "/@" + name); /* * Some actions */ } @DataProvider(name = "steemians") public Object[][] members() { return new Object[][] { {"annepink"}, {"gghite"}, {"lucky2015"}, {"honoru"}, }; } @AfterClass public void tearDownClass() { driver.quit(); } } ``` **演示视频:** [https://youtu.be/UQSlN4KlgRs](https://youtu.be/UQSlN4KlgRs) . . . . [Cookie 😅] Seleniun java lib version: 3.141.59 java version: 13.0.1
author | june0620 |
---|---|
permlink | java-15-web-automation-15-selenium-with-testng-4-dataprovider-annotation-cn |
category | hive-101145 |
json_metadata | {"tags":["hive-101145","cn","cn-stem","steemstem","mini","zzan","sct-cn","sct-freeboard","dblog","java","sct","partiko"],"image":["https://files.steempeak.com/file/steempeak/june0620/DKldjbG3-reds-java-house-1591357_1280.jpg","https://files.steempeak.com/file/steempeak/june0620/jFK2w1Vi-image.png"],"links":["https://pixabay.com/","https://youtu.be/UQSlN4KlgRs"],"app":"partiko","format":"markdown","canonical_url":"https://www.steemcoinpan.com/@june0620/java-15-web-automation-15-selenium-with-testng-4-dataprovider-annotation-cn","users":["DataProvider","Test","BeforeClass","june0620","id","class","href","name","AfterClass"]} |
created | 2020-03-17 12:50:45 |
last_update | 2020-03-17 12:58:39 |
depth | 0 |
children | 7 |
last_payout | 2020-03-24 12:50:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.734 HBD |
curator_payout_value | 3.984 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,878 |
author_reputation | 118,592,211,436,406 |
root_title | "[JAVA #15] [Web Automation #15] Selenium With TestNG #4 @DataProvider annotation [CN]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,434,444 |
net_rshares | 31,835,422,579,695 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slowwalker | 0 | 609,049,317,809 | 7% | ||
magicmonk | 0 | 1,777,931,925,803 | 100% | ||
ffcrossculture | 0 | 97,821,954,506 | 21% | ||
tumutanzi | 0 | 931,814,396 | 50% | ||
holoz0r | 0 | 1,364,582,334 | 1.75% | ||
oldstone | 0 | 257,445,153,105 | 5% | ||
jack8831 | 0 | 16,721,120,497 | 25% | ||
roguewriter | 0 | 13,618,087,355 | 7% | ||
ramires | 0 | 6,426,370,553 | 25% | ||
coldhair | 0 | 887,674,208 | 50% | ||
mys | 0 | 4,450,367,365 | 2.52% | ||
lotusofmymom | 0 | 7,589,533,058 | 7% | ||
allsale | 0 | 361,611,699,560 | 100% | ||
virus707 | 0 | 3,151,338,419,077 | 19% | ||
ew-and-patterns | 0 | 173,708,579,027 | 8% | ||
whd | 0 | 2,837,609,620 | 2.52% | ||
ilovemylife | 0 | 726,736,680,611 | 32.5% | ||
steemstatistics | 0 | 248,948,483 | 52% | ||
tipu | 0 | 3,295,161,737,592 | 5% | ||
kimzwarch | 0 | 8,916,854,297 | 4% | ||
june0620 | 0 | 1,186,720,065,338 | 100% | ||
sbdraffle | 0 | 310,261,845 | 62% | ||
lindalex | 0 | 580,290,767 | 50% | ||
rudyardcatling | 0 | 838,322,425 | 100% | ||
cnbuddy | 0 | 1,740,225,086,719 | 100% | ||
banjjakism | 0 | 5,132,874,556 | 9.5% | ||
itchyfeetdonica | 0 | 267,280,002,842 | 50% | ||
gamezine | 0 | 4,209,261,776 | 25% | ||
stupid | 0 | 676,691,705 | 40% | ||
mehta | 0 | 134,939,544,124 | 40% | ||
suhunter | 0 | 946,821,159 | 50% | ||
udabeu | 0 | 13,773,883,187 | 30% | ||
marsswim | 0 | 99,342,881,022 | 50% | ||
photoholic | 0 | 377,898,271,889 | 7% | ||
maikuraki | 0 | 5,563,887,830 | 19% | ||
fego | 0 | 4,332,787,339 | 3.5% | ||
beleg | 0 | 1,076,095,268 | 2.52% | ||
lucky2015 | 0 | 346,705,684,880 | 100% | ||
gghite | 0 | 429,927,499,304 | 65% | ||
angelinafx | 0 | 15,048,140,238 | 6% | ||
payroll | 0 | 325,955,734,643 | 1% | ||
jaydih | 0 | 457,645,411,238 | 11% | ||
andrewma | 0 | 12,115,046,317 | 50% | ||
kimseun | 0 | 71,119,059,377 | 11% | ||
wisdomandjustice | 0 | 385,239,962,989 | 5% | ||
pilimili | 0 | 427,211,202 | 95% | ||
freegon | 0 | 206,887,201,572 | 100% | ||
kanadaramagi123 | 0 | 48,412,407,383 | 11% | ||
suonghuynh | 0 | 723,720,889,275 | 6% | ||
loveecho | 0 | 87,115,462,666 | 11% | ||
wanggang | 0 | 152,823,102,996 | 20% | ||
mightypanda | 0 | 1,663,056,742 | 3.5% | ||
pagliozzo | 0 | 18,056,158,532 | 20% | ||
angelslake | 0 | 18,416,294,443 | 11% | ||
csy | 0 | 14,548,913,670 | 7% | ||
smartvote | 0 | 588,609,803,229 | 6% | ||
harkar | 0 | 94,659,260,609 | 20% | ||
wordit | 0 | 17,821,934,513 | 11% | ||
changxiu | 0 | 5,027,498,215 | 50% | ||
sj-jeong | 0 | 583,001,719,511 | 11% | ||
wondumyungga | 0 | 39,420,669,001 | 11% | ||
aquawink | 0 | 46,615,242,380 | 11% | ||
seo70 | 0 | 37,971,340,320 | 70% | ||
cherryzz | 0 | 174,660,189,207 | 50% | ||
djusti | 0 | 1,058,536,287,573 | 100% | ||
ringit | 0 | 30,308,304,153 | 11% | ||
coreabeforekorea | 0 | 354,612,685,589 | 11% | ||
talkative-bk | 0 | 458,398,158,285 | 11% | ||
nineteensixteen | 0 | 638,582,650,321 | 100% | ||
wherein | 0 | 2,325,509,384,487 | 48% | ||
sindong | 0 | 582,439,933,063 | 80% | ||
steemfriends | 0 | 4,565,179,075 | 100% | ||
swiftbot | 0 | 578,278,880 | 5% | ||
cyberrn | 0 | 813,067,653,193 | 18% | ||
mia-cc | 0 | 594,392,085 | 5% | ||
tina3721 | 0 | 4,840,688,147 | 50% | ||
andyhsia | 0 | 6,998,089,669 | 100% | ||
minigame | 0 | 2,778,660,403,042 | 8% | ||
whatdidshewear | 0 | 90,597,242,081 | 11% | ||
jjm13 | 0 | 18,244,871,826 | 19% | ||
sjgod4018 | 0 | 225,614,042,168 | 11% | ||
mustard-seed | 0 | 32,436,815,980 | 11% | ||
zzan.hmy | 0 | 101,155,197,937 | 2.7% | ||
oldstone.sct | 0 | 3,845,518,946 | 7% | ||
mini.sct | 0 | 2,316,206,325 | 40% | ||
zzangu | 0 | 3,173,639,646 | 100% | ||
cn-sct | 0 | 1,900,089,120 | 2% | ||
perrymine | 0 | 896,839,394 | 11% | ||
freegon.sct | 0 | 10,699,649,833 | 100% | ||
sct.krwp | 0 | 163,732,610,952 | 0.24% | ||
bcm | 0 | 1,177,120,028,787 | 3.75% | ||
dappstats | 0 | 6,711,363,960 | 15% | ||
sct.curator | 0 | 17,687,775,144 | 21.27% | ||
jaykayw | 0 | 24,675,254,962 | 11% | ||
cnbuddy-reward | 0 | 1,036,521,097,384 | 100% | ||
roseofmylife | 0 | 154,525,271,769 | 7% | ||
springflower | 0 | 2,215,629,814 | 7% | ||
mychoco | 0 | 1,306,984,431 | 7% | ||
morningcare | 0 | 3,592,328,184 | 5% | ||
real3earch | 0 | 8,382,928,727 | 100% | ||
unpopular | 0 | 34,967,382,835 | 40% | ||
we-together | 0 | 382,799,563,678 | 7% | ||
florianopolis | 0 | 1,235,844,292 | 1% | ||
steem-agora | 0 | 1,614,416,132 | 7% | ||
dblogvoter | 0 | 95,707,216 | 1.95% | ||
reward.tier2 | 0 | 2,022,486,640 | 100% | ||
p-translation | 0 | 1,806,678,779 | 7% | ||
bilpcoinpower | 0 | 0 | 1% | ||
lovequeen | 0 | 3,576,671,692 | 100% | ||
mailporpor1 | 0 | 0 | 100% |
cn 标签不写 差评🙅 个人建议哈...标题加个中文比较好 !shop @tipu curate Posted using [Partiko Android](https://partiko.app/referral/annepink)
author | annepink |
---|---|
permlink | annepink-re-june0620-java-15-web-automation-15-selenium-with-testng-4-dataprovider-annotation-cn-20200317t125448308z |
category | hive-101145 |
json_metadata | {"app":"partiko","client":"android"} |
created | 2020-03-17 12:54:48 |
last_update | 2020-03-17 12:54:48 |
depth | 1 |
children | 5 |
last_payout | 2020-03-24 12:54:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 1,032,301,266,727,142 |
root_title | "[JAVA #15] [Web Automation #15] Selenium With TestNG #4 @DataProvider annotation [CN]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,434,570 |
net_rshares | 0 |
我怎么又没加cn了呢,哎 哈哈🤗 多谢萍萍提醒和点赞 👍
author | june0620 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-annepink-2020317t22337477z | ||||||
category | hive-101145 | ||||||
json_metadata | {"tags":["esteem"],"app":"esteem/2.2.4-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-03-17 13:03:39 | ||||||
last_update | 2020-03-17 13:03:39 | ||||||
depth | 2 | ||||||
children | 2 | ||||||
last_payout | 2020-03-24 13:03:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 28 | ||||||
author_reputation | 118,592,211,436,406 | ||||||
root_title | "[JAVA #15] [Web Automation #15] Selenium With TestNG #4 @DataProvider annotation [CN]" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 96,434,784 | ||||||
net_rshares | 0 |
多谢june 没嫌弃我多事啊😬😂
author | annepink |
---|---|
permlink | annepink-re-june0620-re-annepink-2020317t22337477z-20200317t131220774z |
category | hive-101145 |
json_metadata | {"app":"partiko","client":"android"} |
created | 2020-03-17 13:12:21 |
last_update | 2020-03-17 13:12:42 |
depth | 3 |
children | 1 |
last_payout | 2020-03-24 13:12:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 1,032,301,266,727,142 |
root_title | "[JAVA #15] [Web Automation #15] Selenium With TestNG #4 @DataProvider annotation [CN]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,434,973 |
net_rshares | 0 |
下贴开始标题也写上中文 😀
author | june0620 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-annepink-2020317t22518939z | ||||||
category | hive-101145 | ||||||
json_metadata | {"tags":["esteem"],"app":"esteem/2.2.4-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-03-17 13:05:21 | ||||||
last_update | 2020-03-17 13:05:21 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2020-03-24 13:05:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 13 | ||||||
author_reputation | 118,592,211,436,406 | ||||||
root_title | "[JAVA #15] [Web Automation #15] Selenium With TestNG #4 @DataProvider annotation [CN]" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 96,434,819 | ||||||
net_rshares | 0 |
<a href="https://tipu.online/curator?annepink" target="_blank">Upvoted 👌</a> (Mana: 5/20 - <a href="https://steempeak.com/steem/@tipu/tipu-curate-project-update-recharging-curation-mana" target="_blank">need recharge</a>?)
author | tipu |
---|---|
permlink | re-annepink-re-june0620-java-15-web-automation-15-selenium-with-testng-4-dataprovider-annotation-cn-20200317t125448308z-20200317t125508 |
category | hive-101145 |
json_metadata | "" |
created | 2020-03-17 12:55:06 |
last_update | 2020-03-17 12:55:06 |
depth | 2 |
children | 0 |
last_payout | 2020-03-24 12:55:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 231 |
author_reputation | 55,922,745,798,079 |
root_title | "[JAVA #15] [Web Automation #15] Selenium With TestNG #4 @DataProvider annotation [CN]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,434,582 |
net_rshares | 0 |
He said, ***'Stop doing wrong things and turn back to God! The kingdom of heaven is almost here.***'(Matthew 3:2) ## *Bro. Eli Challenges Atheism Belief, There is No God* Watch the Video below to know the Answer... ***(Sorry for sending this comment. We are not looking for our self profit, our intentions is to preach the words of God in any means possible.)*** https://youtu.be/QqkuNRO4Bt4 Comment what you understand of our Youtube Video to receive our full votes. We have 30,000 #SteemPower. It's our little way to **Thank you, our beloved friend.** Check our [Discord Chat](https://discord.gg/vzHFNd6) Join our Official Community: https://steemit.com/created/hive-182074
author | florianopolis |
---|---|
permlink | 67imwthubzg |
category | hive-101145 |
json_metadata | "" |
created | 2020-03-17 12:59:00 |
last_update | 2020-03-17 12:59:00 |
depth | 1 |
children | 0 |
last_payout | 2020-03-24 12:59:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 682 |
author_reputation | -5,988,767,749,052 |
root_title | "[JAVA #15] [Web Automation #15] Selenium With TestNG #4 @DataProvider annotation [CN]" |
beneficiaries | [] |
max_accepted_payout | 10,000.000 HBD |
percent_hbd | 100 |
post_id | 96,434,682 |
net_rshares | 1,232,840,010 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
florianopolis | 0 | 1,232,840,010 | 1% |