diff options
Diffstat (limited to 'chrome/test/functional/memory.py')
-rw-r--r-- | chrome/test/functional/memory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/functional/memory.py b/chrome/test/functional/memory.py index a06eb23..bf7e044 100644 --- a/chrome/test/functional/memory.py +++ b/chrome/test/functional/memory.py @@ -56,7 +56,7 @@ class MemoryTest(pyauto.PyUITest): The integer process identifier (PID) for the specified process, or None if the PID cannot be identified. """ - info = self.GetBrowserInfo()['extension_processes'] + info = self.GetBrowserInfo()['extension_views'] pid = [x['pid'] for x in info if x['name'] == '%s' % name] if pid: return pid[0] |