Home | History | Annotate | Download | only in pyautolib

Lines Matching refs:frame_xpath

949     def __init__(self, ui_test, tab_index=0, windex=0, frame_xpath=''):
961 self.frame_xpath = frame_xpath
968 self.frame_xpath)
972 def __init__(self, ui_test, view, frame_xpath=''):
983 self.frame_xpath = frame_xpath
989 self.frame_xpath)
3459 def ExecuteJavascript(self, js, tab_index=0, windex=0, frame_xpath=''):
3471 frame_xpath: XPath of the frame to execute the script. Default is no
3485 'frame_xpath' : frame_xpath,
3493 def ExecuteJavascriptInRenderView(self, js, view, frame_xpath=''):
3508 frame_xpath: XPath of the frame to execute the script. Default is no
3522 'frame_xpath' : frame_xpath,
3530 def ExecuteJavascriptInOOBEWebUI(self, js, frame_xpath=''):
3541 frame_xpath: XPath of the frame to execute the script. Default is no
3554 'frame_xpath': frame_xpath,
3562 def GetDOMValue(self, expr, tab_index=0, windex=0, frame_xpath=''):
3572 frame_xpath: XPath of the frame to execute the script. Default is no
3579 return self.ExecuteJavascript(js, tab_index, windex, frame_xpath)
4099 def SubmitForm(self, form_id, tab_index=0, windex=0, frame_xpath=''):
4113 if self.ExecuteJavascript(js, tab_index, windex, frame_xpath) != 'done':
4118 tab_index, windex, frame_xpath),
5173 xpath='//*[contains(text(), "%s")]' % text, frame_xpath='//iframe',