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 -

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

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -