本文整理汇总了Python中Plugins.getCurrentPluginModule方法的典型用法代码示例。如果您正苦于以下问题:Python Plugins.getCurrentPluginModule方法的具体用法?Python Plugins.getCurrentPluginModule怎么用?Python Plugins.getCurrentPluginModule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Plugins
的用法示例。
在下文中一共展示了Plugins.getCurrentPluginModule方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: submitForm
# 需要导入模块: import Plugins [as 别名]
# 或者: from Plugins import getCurrentPluginModule [as 别名]
def submitForm(self):
elements=[]
for e in self.theFrame.findAllElements("*"):
el={}
el["type"] = str(e.localName())
if e.hasAttribute("id"):
el["id"]=str(e.attribute("id"))
if e.hasAttribute("name"):
el["name"]=str(e.attribute("name"))
val= e.evaluateJavaScript('this.value').toPyObject()
if val!=None:
el["value"]=val
elements.append(el)
if "#" in self.parent.current_text.split(" ")[0]:
plugins_list=[]
for p in Plugins.get_plugin_names():
if str(self.parent.current_text.split(" ")[0]).lower().replace("#","") in p:
plugins_list.append(p)
if plugins_list:
plugin_name=plugins_list[0]
pl=Plugins.getCurrentPluginModule(plugin_name)
try:
pl.onFormSubmit(elements)
except:
print("[Duck Launcher] No 'onFormSubmit()' method present in the plugin.")
示例2: sendData
# 需要导入模块: import Plugins [as 别名]
# 或者: from Plugins import getCurrentPluginModule [as 别名]
def sendData(self, thing, value):
print "data : " , thing, value
if "#" in self.parent.current_text.split(" ")[0]:
plugins_list=[]
for p in Plugins.get_plugin_names():
if str(self.parent.current_text.split(" ")[0]).lower().replace("#","") in p:
plugins_list.append(p)
if plugins_list:
plugin_name=plugins_list[0]
pl=Plugins.getCurrentPluginModule(plugin_name)
try:
pl.onDataSent(thing, value)
except:
print("[Duck Launcher] No 'onDataSent()' method present in the plugin.")