1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-10-30 14:44:09 +00:00

GoogleSlides: Updated to uiautomator2

The latest version of uiautomator2 seems to have an issue with google slides not
being able to interact with any elements on the slide therefore we are using a
slightly older version which doesn't have this issue.
This commit is contained in:
Marc Bonnici
2017-05-23 10:56:22 +01:00
parent f33fd97705
commit 89aa3e1208
15 changed files with 432 additions and 204 deletions

View File

@@ -132,5 +132,6 @@ class GoogleSlides(AndroidUxPerfWorkload):
def teardown(self, context):
super(GoogleSlides, self).teardown(context)
# Remove the newly created file
self.device.delete_file(self.device.path.join(self.device.working_directory, self.new_doc_name))
self.device.broadcast_media_mounted(self.device.working_directory)
f = self.device.path.join(self.device.working_directory, self.new_doc_name)
self.device.delete_file(f)
self.device.broadcast_media_scan_file(f)