def __scrollbars_hide(self):
"""Hides Chrome's scrollbars.
Creates a new <style> element to contain the CSS rule for hiding
the browser scrollbars. `::-webkit-scrollbar {width: 0px;}`
Args:
None
Returns:
None
"""
self.execute_script(
"var sheet = document.createElement('style'); "
"sheet.id = 'chrome_screenshot_fix'; "
"sheet.innerHTML = '::-webkit-scrollbar {width: 0px;}'; "
"document.body.appendChild(sheet); ")
评论列表
文章目录