更改用户配置文件 chrome selenium webdriver

Change user profile chrome selenium webdriver

我有问题。 我使用 Selenium Webdriver 并希望将用户配置文件从一个用户更改为另一个用户。 例如user1 是普通用户 用户 2 具有可管理权限

将运行一个具有特定步骤的普通用户的测试用例。 然后是管理员并在另一个测试用例

中的"wordpress"中批准这样的post

感谢任何帮助

ChromeOptions regularUser = new ChromeOptions();
ChromeOptions adminUser = new ChromeOptions();
regularUser.addUserProfilePreference(yourRegularUserPreferences);
adminUser.addUserProfilePreference(yourAdminUserPreferences);

//When testing regular user
WebDriver driver = new RemoteWebDriver(new Uri("http://path/to/selenium/server"), regularUser.toCapabilities());

//When testing admin user
WebDriver driver = new RemoteWebDriver(new Uri("http://path/to/selenium/server"), adminUser.toCapabilities());