可能对正在寻找解决方案的其他人有用
这就是我解决问题的方法。希望对具有类似设置的任何人都有帮助。
- 将 ModHeader 扩展添加到 chrome 浏览器
如何下载 Modheader?关联
ChromeOptions options = new ChromeOptions();
options.addExtensions(new File(C://Downloads//modheader//modheader.crx));
// Set the Desired capabilities
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
// Instantiate the chrome driver with capabilities
WebDriver driver = new RemoteWebDriver(new URL(YOUR_HUB_URL), options);
- 转到浏览器扩展并捕获 ModHeader 的本地存储上下文 ID
- 导航到 ModHeader 的 URL 以设置本地存储上下文
.
// set the context on the extension so the localStorage can be accessed
driver.get("chrome-extension://idgpnmonknjnojddfkpgkljpfnnfcklj/_generated_background_page.html");
Where `idgpnmonknjnojddfkpgkljpfnnfcklj` is the value captured from the Step# 2
- 现在使用将标头添加到请求中
Javascript
.
((Javascript)driver).executeScript(
"localStorage.setItem('profiles', JSON.stringify([{ title: 'Selenium', hideComment: true, appendMode: '',
headers: [
{enabled: true, name: 'token-1', value: 'value-1', comment: ''},
{enabled: true, name: 'token-2', value: 'value-2', comment: ''}
],
respHeaders: [],
filters: []
}]));");
其中token-1
, value-1
, token-2
,value-2
是要添加的请求标头和值。
现在导航到所需的 Web 应用程序。
driver.get("your-desired-website");