mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
change the name of a variable
This commit is contained in:
parent
3567b86e77
commit
b4b160d219
1 changed files with 4 additions and 4 deletions
|
@ -13,9 +13,9 @@ public class GmailEmailListView {
|
||||||
final AndroidDriver driver;
|
final AndroidDriver driver;
|
||||||
|
|
||||||
@AndroidFindBy(uiAutomator = "new UiSelector().description(\"me about UploadFile, on May 11, conversation read\")")
|
@AndroidFindBy(uiAutomator = "new UiSelector().description(\"me about UploadFile, on May 11, conversation read\")")
|
||||||
private AndroidElement email;
|
private AndroidElement emailAmericanFormatDate;
|
||||||
@AndroidFindBy(uiAutomator = "new UiSelector().description(\"me about UploadFile, on 11 May, conversation read\")")
|
@AndroidFindBy(uiAutomator = "new UiSelector().description(\"me about UploadFile, on 11 May, conversation read\")")
|
||||||
private AndroidElement email2;
|
private AndroidElement emailEuropeanFormatDate;
|
||||||
|
|
||||||
|
|
||||||
public GmailEmailListView (AndroidDriver driver) {
|
public GmailEmailListView (AndroidDriver driver) {
|
||||||
|
@ -25,9 +25,9 @@ public class GmailEmailListView {
|
||||||
|
|
||||||
public GmailEmailView clickOnEmail (){
|
public GmailEmailView clickOnEmail (){
|
||||||
try{
|
try{
|
||||||
email.click();
|
emailAmericanFormatDate.click();
|
||||||
}catch (NoSuchElementException e) {
|
}catch (NoSuchElementException e) {
|
||||||
email2.click();
|
emailEuropeanFormatDate.click();
|
||||||
}
|
}
|
||||||
GmailEmailView gmailEmailView = new GmailEmailView(driver);
|
GmailEmailView gmailEmailView = new GmailEmailView(driver);
|
||||||
return gmailEmailView;
|
return gmailEmailView;
|
||||||
|
|
Loading…
Reference in a new issue