Ejemplo n.º 1
0
def getButtonSkipSingIn():
    return UIElement(By.ID, 'btn2')
Ejemplo n.º 2
0
def getFrameOption():
    return UIElement(By.XPATH, '//a[contains(text(),"Frames")]')
Ejemplo n.º 3
0
def getAlertsOption():
    return UIElement(By.XPATH, '//a[contains(text(),"Alerts")]')
Ejemplo n.º 4
0
def getOptionAlertTextbox():
    return UIElement(By.XPATH,'//a[@href="#Textbox"]')
Ejemplo n.º 5
0
def getOptionSwitchTo():
    return UIElement(By.XPATH, '//a[contains(text(),"SwitchTo")]')
Ejemplo n.º 6
0
def getOptionAlertOk():
    return UIElement(By.XPATH,'//a[@href="#OKTab"]')
Ejemplo n.º 7
0
def getOptionAlertOkCancel():
    return UIElement(By.XPATH,'//a[@href="#CancelTab"]')
Ejemplo n.º 8
0
def getButtonAlertTextbox():
    return UIElement(By.XPATH,'//div[@id = "Textbox"]/button')
Ejemplo n.º 9
0
def getMessageText():
    return UIElement(By.ID,'demo1')
Ejemplo n.º 10
0
def getButtonAlertOKCancel():
    return UIElement(By.XPATH,'//div[@id = "CancelTab"]/button')
Ejemplo n.º 11
0
def getButtonAlertOK():
    return UIElement(By.XPATH,'//div[@id = "OKTab"]/button')
Ejemplo n.º 12
0
 def getInputInFrames(self):
     return UIElement(byType=By.XPATH,
                      locator='//input',
                      parentFrame=self.__parentFrame2_2)
Ejemplo n.º 13
0
 def getSingleInput(self):
     return UIElement(byType=By.XPATH,
                      locator='//input',
                      parentFrame=self.__parentFrame1)
Ejemplo n.º 14
0
 def getButtonIframeWithIframe(self):
     return UIElement(
         byType=By.XPATH,
         locator='//a[contains(text(),"Iframe with in an Iframe")]')