How to take fulllength screenshot not only the visible area in android real devices by using appium, python and selenium webdriver? -


i trying full length screenshot webpage responsive .i able screenshot visible part.is there chance screenshot visible scrolling down.i using python,selenium webdriver , appium.below code

desired_caps['platformname'] = 'android' desired_caps['platformversion'] = '4.3' desired_caps['devicename'] = 'galaxy s3' desired_caps['browsername']='chrome' self.driver = webdriver.remote('http://localhost:4723/wd/hub', desired_caps) self.driver.get('http://www.google.com/');(not url) self.driver.implicitly_wait(30); self.driver.save_screenshot('mobile_app.png') 


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -