作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想打个电话 fetch("https://www.test.com")
在 chrome 开发工具控制台中。--auto-open-devtools-for-tabs
打开开发工具。但是,我不确定是否可以导航到 console
并输入 fetch("https://www.test.com")
chrome_options = Options()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--disable-dev-shm-usage')
chrome_options.add_argument('--auto-open-devtools-for-tabs')
driver = webdriver.Chrome(seleniumwire_options={'verify_ssl': False},
executable_path=ChromeDriverManager(chrome_type='google-chrome').install(),
chrome_options=chrome_options
)
最佳答案
在 Chrome 控制台中执行命令大部分只是执行 JavaScript 代码。
那么你可以在 Selenium 中执行如下:
driver.execute_script("fetch('https://www.test.com'")
如果由于使用 headless 模式而需要查看命令的返回值,则它可能类似于:
print(self.driver.execute_script("fetch('https://www.test.com')"))
关于python - 如何使用 python selenium webdriver 在 Chrome 开发者工具控制台中进行 fetch 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63273668/
我是一名优秀的程序员,十分优秀!