私は、すべての従業員が私が作成したすべての Java ファイルにアクセスできる会社の jenkins サーバーに配置されるセレン テスト ケースを作成しようとしています。
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get("http://somesite.com");
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
WebElement userName=driver.findElement(By.xpath(".//*[@id='username']"));
userName.clear();
userName.sendKeys("someName@somecompany.com");
WebElement password=driver.findElement(By.xpath(".//*[@id='password']"));
passwordclear();
password.sendKeys("password");
password.submit();
driver.quit();
私がやりたいのは、そこに「パスワード」を表示しないことです。他の従業員に私のパスワードを見られたくないのです。それを行う方法はありますか?