I'm trying to get to a Dapp that needs Metamask extension to access it. I added it through chrome extension. I know how to add the extension to the chrome instance in selenium but I don't know how to add a password etc..Could anyone download Metamask and give me an example of how I could pass credentials through selenium using it?
ChromeOptions options = new ChromeOptions();
options.addArguments("--start-maximized");
options.addExtensions(newFile("//Applications//chrome//MetaMask_v3.13.8.crx"));
driver = new ChromeDriver(options);