51Testing软件测试论坛

标题: 如何用python得到手机端页面的完整截图? [打印本页]

作者: 测试积点老人    时间: 2021-7-13 13:48
标题: 如何用python得到手机端页面的完整截图?

我想要用python获取一个手机端页面完整的长截图。我用了mobile emulation来设置长和宽。这个页面太长了,我hardcode去获取了固定的数值。

现在设定的宽是375,长是22000,但如果是这么设定的话,我会得到以下这个报错"Time out receiving a message from the renderer"。

现在有两个问题让我感到困惑:

下面是比较完整的代码,如果有什么问题的话,请随时告诉我,先谢啦!

  1. def save_screenshot(url):
  2.          mobile_emulation = {
  3.             "deviceMetrics": { "width": 375, "height": 22000, "pixelRatio": 3.0 },
  4.             "userAgent": "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 5 Build/JOP40D) "
  5.                          "AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile
  6.                           Safari/535.19" }
  7.         chrome_options = webdriver.ChromeOptions()
  8.         chrome_options.add_experimental_option("mobileEmulation", mobile_emulation)
  9.         chrome_options.add_argument("start-maximized")
  10.         chrome_options.add_argument("enable-automation")
  11.         chrome_options.add_argument("--headless")
  12.         chrome_options.add_argument("--no-sandbox")
  13.         chrome_options.add_argument("--disable-infobars")
  14.         chrome_options.add_argument("--disable-dev-shm-usage")
  15.         chrome_options.add_argument("--disable-browser-side-navigation")
  16.         chrome_options.add_argument("--disable-gpu")
  17.         driver = webdriver.Chrome(chrome_options=chrome_options)
  18.         driver.get(url)
  19.         driver.implicitly_wait(5)
  20.         width = driver.execute_script("return document.documentElement.scrollWidth")
  21.         height = driver.execute_script("return document.documentElement.scrollHeight")
  22.         print(width,height)
  23.         driver.set_window_size(width, height-1800)
  24.         time.sleep(1)
  25.         driver.save_screenshot(NAME)
复制代码



作者: qqq911    时间: 2021-7-14 10:30
长度太长了,增加等待时间
作者: bellas    时间: 2021-7-14 10:52
参考下这个链接  https://www.jb51.net/article/168609.htm
作者: 海海豚    时间: 2021-7-14 13:45
https://www.jianshu.com/p/c5e5a18fea2e  看下这个
作者: 郭小贱    时间: 2021-7-14 15:09
adb shell /system/bin/screencap -p /sdcard/screenshot.png
作者: litingting0214    时间: 2021-7-14 16:47
滚动截长屏




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2