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
Post a Comment