Home | History | Annotate | Download | only in pyautolib

Lines Matching defs:Plugins

5 """Python representation for Chromium Plugins info.
7 This is the info available at about:plugins.
13 info = self.GetPluginsInfo() # fetch plugins snapshot
14 print info.Plugins()
16 See more examples in chrome/test/functional/plugins.py.
25 """Represent info for Chromium plugins.
44 def Plugins(self):
45 """Get plugins.
48 a list of plugins info
73 return self.pluginsdict.get('plugins', [])
81 got = filter(lambda x: x['path'] == path, self.Plugins())
88 There might be several plugins with the same name.
96 return filter(lambda x: x['name'] == name, self.Plugins())
101 This is useful in case there are multiple plugins for a name.