第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

@After 和@Before 注釋沒有執(zhí)行第二種方法

@After 和@Before 注釋沒有執(zhí)行第二種方法

慕碼人8056858 2023-04-26 16:23:22
我已經(jīng)聲明了 2 個(gè)方法 @after 注解,但它只會(huì)執(zhí)行第一個(gè)方法,它不允許我執(zhí)行第二個(gè)方法。請(qǐng)看下面的代碼我想每次退出瀏覽器都執(zhí)行1個(gè)方法。我想對(duì)失敗的測試用例執(zhí)行第二種方法。@Beforepublic void databaseLoading(Scenario scenario) {    //System.out.println("Test Environment Set Up");    System.out.println("\n------------------------------------------------     TEST ENVIRONMENT SET UP      ------------------------------------------------------------------------------\n");    System.out.println("Executing Scenario :-> " + scenario.getName());}@Afterpublic void browserTearDown(){    System.out.println("End the browser");    driver.close(); }public void Screenshot(Scenario scenario) {    // take the screenshot at the end of every test    String location = ".\\target\\TakeScreenshot";    SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MMM-yyyy hh-mm-ss", Locale.ENGLISH);    Date date = new Date();    File scrFile =            ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);    // now save the screenshto to a file some place    if (scenario.isFailed()) {        try {            FileUtils.copyFile(scrFile, new File(location + "\\" + dateFormat.format(date) + ".png"));            System.out.println("Screenshot saved");        } catch (IOException e) {            System.out.println("Error in taking Screenshot --> " + e);        }    }}從未使用過方法“屏幕截圖(cucumber.api.Scenario)”。此錯(cuò)誤消息來自第二種方法。
查看完整描述

1 回答

?
HUX布斯

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超6個(gè)贊

你只標(biāo)記了browserTearDown()方法。


也將@After標(biāo)記添加到方法中:Screenshot()


@After

public void browserTearDown()

{

    System.out.println("End the browser");

    driver.close();

}


@After

public void Screenshot(Scenario scenario) {

   ...


}


查看完整回答
反對(duì) 回復(fù) 2023-04-26
  • 1 回答
  • 0 關(guān)注
  • 252 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)