在C ++的控制台中,如何在键入输入时进行输入,并按Enter键,输入不会显示在控制台上。继承我的代码。 看看这个gif gyazo,https://gyazo.com/8ac7196dbf3236d4a55ee1024809a7c9 按Enter键时,我不希望出现“1”。我顺便使用Code :: Blocks。
@BeforeClass
public void a() {
driver = new ChromeDriver(capabilities);
capabilities.setCapability("marionette", true);
System.setProperty("webdriver.chrome.driver", file.getAbsolutePath());
driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);
System.out.println("Before class called");
}
@BeforeTest
public void setup(){
System.out.println("Before test called");
driver.get("http://localhost:8080/#/login");
}
@AfterTest
public void close() {
System.out.println("After test called");
}
@AfterClass
public void b() {
System.out.println("After class called");
driver.close();
}