Hi Tom,
running with Appium Studio , not with Appium server.
earlier complete framework created based on Appium server and created methods like Mobileclick,
MobilewriteInputnav, ClickAndNavigateBack and etcâŚand all methods are working fine with appium server in real Android/iod devices.
now i had used Appium studio integrated with framework and existing methods are working fine with appium studio and executed on real android/ios device.
with appium studio i had seen there is action buttons like driver.deviceAction(âHomeâ), for this action i had created method and when i am calling this function , its not executing from framework, other than this functions working fine, which is related to Experitest functions are not working in appium studio.
i had tested with both device android/ios, current tracelogs is for ios:
please find the earlier created functions/methods in keywords class for your reference:
// Clicking on the button
public String Mobileclick(AppiumDriver driver, String objRef, String data)
throws Exception {
System.out.println("Mobileclickr objRef "+objRef);
WebElement element = mobileobject(objRef, driver);
System.out.println("Mobileclickr element");
WebDriverWait wait = new WebDriverWait(driver, 30);
System.out.println("Mobileclickr WebDriverWait");
element.click();
return Constants.KEYWORD_PASS;
// Write the input to mobile text box
public String MobilewriteInInput(AppiumDriver driver, String objRef,String data) throws Exception {
WebElement element = mobileobject(objRef, driver);
WebDriverWait wait = new WebDriverWait(driver, 30);
wait.until(ExpectedConditions.visibilityOf(element));
// System.out.println(element + "::::"+ data);
element.sendKeys(data);
Thread.sleep(500); //commented by Siva on 10/20
driver.navigate().back();
return Constants.KEYWORD_PASS;
Not working Experitest function/method in keyword class:
public String MobileAppExit(AppiumDriver driver)
throws Exception {
((SeeTestIOSDriver) driver).deviceAction("Home");
return Constants.KEYWORD_PASS;
}
for Launching application desired capability setup:
public static AppiumDriver Mobile()
{
String currentTCName = Constants.MobileFlaggedTCs.get(0);
System.out.println("Mobile TC name: "+currentTCName);
//String mobile=âwebappâ;
String Mobile=ânativeappâ;
//AppiumDriver driver = null;
String host = "localhost";
int port = 8891;
String reportDirectory = "reports";
String reportFormat = "xml";
String testName = "Untitled";
//SeeTestAndroidDriver<SeeTestAndroidElement> driver = null;
SeeTestIOSDriver<SeeTestIOSElement> driver = null;
try {
if(currentTCName.contains("MB0"))
{
DesiredCapabilities dc = new DesiredCapabilities();
dc.setCapability(SeeTestCapabilityType.REPORT_DIRECTORY, reportDirectory);
dc.setCapability(SeeTestCapabilityType.REPORT_FORMAT, reportFormat);
dc.setCapability(SeeTestCapabilityType.TEST_NAME, testName);
dc.setCapability(MobileCapabilityType.UDID, â0d36138461318ea7fe493b272ee6e27d3bd3eb75â);
dc.setCapability(IOSMobileCapabilityType.BUNDLE_ID, âcom.experitest.ExperiBankâ);
driver = new SeeTestIOSDriver<>(new URL(âhttp://â+host+":"+port), dc);
System.out.println("Launched Native App");
//System.out.println("abcd" + Constants.MobileFlaggedTCs.size());
Thread.sleep(8000);
Mobileexecute(driver);
System.out.println("This is thread 5: Mobile Native App");
}
Please find the Stractrac logs:
Row Count69
value is found
[id,
thanh.jun.contactmanager:id/btshow]
Adding OR completed
Hub is StartedâŚ
[TC02_Createleads, TC03_leadmandatory,
TC04_EditLeads, TC05_LeadConvert, TC06_Le
adConvert_opportunity,
TC07_NewLeadClone, TC08_Editclonelead, TC09_Deleteclonele
ad, TC10_MergingLead]
[MB01_Login, MB02_Update_Profile,
MB03_Health_tracker, MB04_ContactManager, MB05
_CHLogin, MB06_Magicbric,
Mobileweb_Login, Mobilweb_Organisation]
Row Count69
value is found
[id,
thanh.jun.contactmanager:id/btshow, id, thanh.jun.contactmanager:id/btshow]
Adding OR completed
Hub is StartedâŚ
Executing on CHROME
Mobile TC name: MB07_Eribank
[Thu Apr 20 13:20:41 IST 2017]
[driver] Starting test: âUntitledâ
[Thu Apr 20 13:20:41 IST 2017]
[driver] {noReset=false, instrumentApp=false, bun
dleId=com.experitest.ExperiBank,
reservationDuration=240, reportFormat=xml, full
Reset=false,
waitForDeviceTimeout=120000, useRemoteGrid=false, automationName=XC
UITest, reportDirectory=reports,
[enableclientlog, enableclientlogger]=false, au
toWebview=false,
udid=0d36138461318ea7fe493b272ee6e27d3bd3eb75, platformName=iOS
, testName=Untitled}
[Thu Apr 20 13:20:41 IST 2017]
[driver] context: NATIVE_APP
[Thu Apr 20 13:20:41 IST 2017]
[driver] application under test:
[Thu Apr 20 13:20:41 IST 2017]
[driver] app path: null
[Thu Apr 20 13:20:41 IST 2017]
[driver] full reset: false
[Thu Apr 20 13:20:41 IST 2017]
[driver] instrument: false
[Thu Apr 20 13:20:41 IST 2017]
[driver] no reset: false
[Thu Apr 20 13:20:41 IST 2017]
[driver] bundleId: com.experitest.ExperiBank
[Thu Apr 20 13:20:41 IST 2017]
[driver] launch timeout ms: null
[Thu Apr 20 13:20:41 IST 2017]
[driver] browser: false
[Thu Apr 20 13:20:41 IST 2017]
[driver] connecting localhost:8891
[Thu Apr 20 13:20:41 IST 2017]
[driver] Call of getSessionID returned: d696
[Thu Apr 20 13:20:41 IST 2017]
[driver] setting reporter directory: reports
[Thu Apr 20 13:20:41 IST 2017]
[driver] setting reporter format: xml
[Thu Apr 20 13:20:41 IST 2017]
[driver] setting test name: Untitled
[Thu Apr 20 13:20:41 IST 2017]
[driver] wait for device '@serialnumber='0d361384
61318ea7fe493b272ee6e27d3bd3eb75ââ
timeout-ms=â120000â
[Thu Apr 20 13:20:46 IST 2017]
[driver] Device âios_app:Ravindra iPhoneâ ready
[Thu Apr 20 13:20:46 IST 2017]
[driver] launching com.experitest.ExperiBank âŚ
RemoteWebDriver: chrome on WIN8_1
(62ac73ae-da56-4265-809c-1798aa3b4548)
[Thu Apr 20 13:20:51 IST 2017]
[driver] Call of launchApp returned: native
Launched Native App
1
Testcase name: MB07_Eribank
Thread[Mobile,6,main]-------Enter
username----MobilewriteInputnav----xpath----//
*[@accessibilityLabel=âUsernameâ]----company
[Thu Apr 20 13:21:04 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:04 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:04 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âUsernameâ])
[Thu Apr 20 13:21:04 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âUsernameâ]")
Bug ID: 405
[Thu Apr 20 13:21:06 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:06 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:06 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:06 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:06 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âUsernameâ])
[Thu Apr 20 13:21:06 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âUsernameâ]")
[Thu Apr 20 13:21:07 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:07 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:07 IST 2017] [d696]
[element] [start] isDisplayed()
[Thu Apr 20 13:21:08 IST 2017] [d696]
[element] [end] isDisplayed
[Thu Apr 20 13:21:08 IST 2017] [d696]
[element] [start] sendKeys(âcompanyâ)
[Thu Apr 20 13:21:13 IST 2017] [d696] [driver]
[start] manage()
[Thu Apr 20 13:21:13 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:14 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder
=âPasswordâ]])
[Thu Apr 20 13:21:14 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder=â
Passwordâ]]")
[Thu Apr 20 13:21:15 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:15 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr objRef
Eribank_Select_password
[Thu Apr 20 13:21:15 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:15 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:15 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder
=âPasswordâ]])
[Thu Apr 20 13:21:15 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder=â
Passwordâ]]")
[Thu Apr 20 13:21:16 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:16 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr element
Mobileclickr WebDriverWait
[Thu Apr 20 13:21:16 IST 2017] [d696]
[element] [start] click()
[Thu Apr 20 13:21:18 IST 2017] [d696]
[element] [end] click
select password field-PASS
[Thu Apr 20 13:21:20 IST 2017] [d696] [driver]
[start] manage()
[Thu Apr 20 13:21:20 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:21 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âPasswordâ])
[Thu Apr 20 13:21:21 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âPasswordâ]")
[Thu Apr 20 13:21:22 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:22 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:22 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:22 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:22 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âPasswordâ])
[Thu Apr 20 13:21:22 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âPasswordâ]")
[Thu Apr 20 13:21:23 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:23 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:23 IST 2017] [d696]
[element] [start] isDisplayed()
[Thu Apr 20 13:21:24 IST 2017] [d696]
[element] [end] isDisplayed
[Thu Apr 20 13:21:24 IST 2017] [d696]
[element] [start] sendKeys(âcompanyâ)
[Thu Apr 20 13:21:27 IST 2017] [d696]
[element] [end] sendKeys
Enter password-PASS
Thread[Mobile,6,main]-------login----Mobileclick----xpath----//*[@text=âLoginâ]-
[Thu Apr 20 13:21:29 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:29 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:30 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âLoginâ])
[Thu Apr 20 13:21:30 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âLoginâ]")
[Thu Apr 20 13:21:31 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:31 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr objRef Eribank_login
[Thu Apr 20 13:21:31 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:31 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:31 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âLoginâ])
[Thu Apr 20 13:21:31 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âLoginâ]")
[Thu Apr 20 13:21:32 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:32 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr element
Mobileclickr WebDriverWait
[Thu Apr 20 13:21:32 IST 2017] [d696]
[element] [start] click()
[Thu Apr 20 13:21:34 IST 2017] [d696]
[element] [end] click
login-PASS
Thread[Mobile,6,main]-------Select
makepayment----Mobileclick----xpath----//*[@t
ext=âMake Paymentâ]----
[Thu Apr 20 13:21:36 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:36 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:36 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âMake Paymentâ])
[Thu Apr 20 13:21:36 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âMake Paymentâ]")
[Thu Apr 20 13:21:37 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:37 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr objRef
Eribank_Select_MakePayment
[Thu Apr 20 13:21:37 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:37 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:37 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âMake Paymentâ])
[Thu Apr 20 13:21:37 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âMake Paymentâ]")
[Thu Apr 20 13:21:39 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:39 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr element
Mobileclickr WebDriverWait
[Thu Apr 20 13:21:39 IST 2017] [d696]
[element] [start] click()
[Thu Apr 20 13:21:40 IST 2017] [d696]
[element] [end] click
Select makepayment-PASS
Thread[Mobile,6,main]-------enter
phone number----MobilewriteInputnav----xpathâ
â//[@class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::[@placeh
older=âPhoneâ]]----9.980400755E9
[Thu Apr 20 13:21:44 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:44 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:44 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder
=âPhoneâ]])
[Thu Apr 20 13:21:44 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder=â
Phoneâ]]")
[Thu Apr 20 13:21:45 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:45 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:45 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:45 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:45 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder
=âPhoneâ]])
[Thu Apr 20 13:21:45 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
class=â_UITextFieldRoundedRectBackgroundViewNeueâ
and ./parent::*[@placeholder=â
Phoneâ]]")
[Thu Apr 20 13:21:47 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:47 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:47 IST 2017] [d696]
[element] [start] isDisplayed()
[Thu Apr 20 13:21:47 IST 2017] [d696]
[element] [end] isDisplayed
[Thu Apr 20 13:21:47 IST 2017] [d696]
[element] [start] sendKeys(â9.980400755E9â
)
[Thu Apr 20 13:21:50 IST 2017] [d696]
[element] [end] sendKeys
enter phone number-PASS
[Thu Apr 20 13:21:56 IST 2017] [d696] [driver]
[start] manage()
[Thu Apr 20 13:21:56 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:56 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âNameâ])
[Thu Apr 20 13:21:56 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âNameâ]")
[Thu Apr 20 13:21:57 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:57 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:57 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:21:57 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:21:57 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âNameâ])
[Thu Apr 20 13:21:57 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âNameâ]")
[Thu Apr 20 13:21:58 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:21:58 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:21:58 IST 2017] [d696]
[element] [start] isDisplayed()
[Thu Apr 20 13:21:59 IST 2017] [d696]
[element] [end] isDisplayed
[Thu Apr 20 13:21:59 IST 2017] [d696]
[element] [start] sendKeys(âRavindraâ)
[Thu Apr 20 13:22:02 IST 2017] [d696]
[element] [end] sendKeys
Enter name-PASS
[Thu Apr 20 13:22:04 IST 2017] [d696] [driver]
[start] manage()
[Thu Apr 20 13:22:04 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:05 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âAmountâ])
[Thu Apr 20 13:22:05 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âAmountâ]")
[Thu Apr 20 13:22:06 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:06 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:22:06 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:06 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:06 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âAmountâ])
[Thu Apr 20 13:22:06 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âAmountâ]")
[Thu Apr 20 13:22:07 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:07 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:22:07 IST 2017] [d696]
[element] [start] isDisplayed()
[Thu Apr 20 13:22:08 IST 2017] [d696]
[element] [end] isDisplayed
[Thu Apr 20 13:22:08 IST 2017] [d696]
[element] [start] sendKeys(â100.0â)
[Thu Apr 20 13:22:11 IST 2017] [d696]
[element] [end] sendKeys
Enter amount-PASS
[Thu Apr 20 13:22:13 IST 2017] [d696] [driver]
[start] findElement(By.xpath: //*
[@accessibilityLabel=âCountryâ])
[Thu Apr 20 13:22:13 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âCountryâ]")
[Thu Apr 20 13:22:14 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:14 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:22:14 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:14 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:14 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@accessibilityLabel=âCountryâ])
[Thu Apr 20 13:22:14 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
accessibilityLabel=âCountryâ]")
[Thu Apr 20 13:22:16 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:16 IST 2017] [d696]
[driver] [end] findElement
[Thu Apr 20 13:22:16 IST 2017] [d696]
[element] [start] isDisplayed()
[Thu Apr 20 13:22:16 IST 2017] [d696]
[element] [end] isDisplayed
[Thu Apr 20 13:22:16 IST 2017] [d696]
[element] [start] sendKeys(âIndiaâ)
[Thu Apr 20 13:22:20 IST 2017] [d696]
[element] [end] sendKeys
Enter country-PASS
Thread[Mobile,6,main]-------Select
Sendpayment----Mobileclick----xpath----(//*[@
class=âUIKBKeyplaneViewâ]/*[@class=âUIKBKeyViewâ])[7]----
[Thu Apr 20 13:22:22 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:22 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:22 IST 2017] [d696]
[driver] [start] findElement(By.xpath: (//
[@class=âUIKBKeyplaneViewâ]/[@class=âUIKBKeyViewâ])[7])
[Thu Apr 20 13:22:22 IST 2017] [d696]
[driver] [start] findElementByXPath("(//*[
@class=âUIKBKeyplaneViewâ]/*[@class=âUIKBKeyViewâ])[7]")
[Thu Apr 20 13:22:24 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:24 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr objRef
Eribank_Select_Sendpayment
[Thu Apr 20 13:22:24 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:24 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:24 IST 2017] [d696]
[driver] [start] findElement(By.xpath: (//
[@class=âUIKBKeyplaneViewâ]/[@class=âUIKBKeyViewâ])[7])
[Thu Apr 20 13:22:24 IST 2017] [d696]
[driver] [start] findElementByXPath("(//*[
@class=âUIKBKeyplaneViewâ]/*[@class=âUIKBKeyViewâ])[7]")
[Thu Apr 20 13:22:25 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:25 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr element
Mobileclickr WebDriverWait
[Thu Apr 20 13:22:25 IST 2017] [d696]
[element] [start] click()
[Thu Apr 20 13:22:27 IST 2017] [d696]
[element] [end] click
Select Sendpayment-PASS
Thread[Mobile,6,main]-------Select
yes----Mobileclick----xpath----//*[@text='Yes
']----
[Thu Apr 20 13:22:29 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:29 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:29 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âYesâ])
[Thu Apr 20 13:22:29 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âYesâ]")
[Thu Apr 20 13:22:31 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:31 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr objRef Eribank_Select_yes
[Thu Apr 20 13:22:31 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:31 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:31 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âYesâ])
[Thu Apr 20 13:22:31 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âYesâ]")
[Thu Apr 20 13:22:32 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:32 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr element
Mobileclickr WebDriverWait
[Thu Apr 20 13:22:32 IST 2017] [d696]
[element] [start] click()
[Thu Apr 20 13:22:34 IST 2017] [d696]
[element] [end] click
Select yes-PASS
Thread[Mobile,6,main]-------logout----Mobileclick----xpath----//*[@text=âLogoutâ
]----
[Thu Apr 20 13:22:36 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:36 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:37 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âLogoutâ])
[Thu Apr 20 13:22:37 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âLogoutâ]")
[Thu Apr 20 13:22:38 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:38 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr objRef Eribank_logout
[Thu Apr 20 13:22:38 IST 2017] [d696]
[driver] [start] manage()
[Thu Apr 20 13:22:38 IST 2017] [d696]
[driver] [end] manage
[Thu Apr 20 13:22:38 IST 2017] [d696]
[driver] [start] findElement(By.xpath: //*
[@text=âLogoutâ])
[Thu Apr 20 13:22:38 IST 2017] [d696]
[driver] [start] findElementByXPath("//*[@
text=âLogoutâ]")
[Thu Apr 20 13:22:39 IST 2017] [d696]
[driver] [end] findElementByXPath
[Thu Apr 20 13:22:39 IST 2017] [d696]
[driver] [end] findElement
Mobileclickr element
Mobileclickr WebDriverWait
[Thu Apr 20 13:22:39 IST 2017] [d696]
[element] [start] click()
[Thu Apr 20 13:22:40 IST 2017] [d696]
[element] [end] click
logout-PASS
testlink.api.java.client.TestLinkAPIException: The call to the
xml-rpc client fa
iled.
Not able to execute the keyword:
[Ljava.lang.StackTraceElement;@2d3134f7
This is thread 5: Mobile Native App
Thank
Ravi