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