All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.co.moneyforward.autotest.actions.web.CloseBrowser Maven / Gradle / Ivy

The newest version!
package jp.co.moneyforward.autotest.actions.web;

import com.microsoft.playwright.Browser;
import jp.co.moneyforward.autotest.framework.action.Act;
import jp.co.moneyforward.autotest.framework.core.ExecutionEnvironment;

public class CloseBrowser implements Act {
  @Override
  public Void perform(Browser value, ExecutionEnvironment executionEnvironment) {
    value.close();
    return null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy