-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MOSIP-31687 #292
MOSIP-31687 #292
Conversation
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
androidReg-clientTest/pom.xml
Outdated
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>inji</groupId> | ||
<artifactId>injitest</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove inji test
androidReg-clientTest/pom.xml
Outdated
<goal>copy-dependencies</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/dependency-jars/</outputDirectory> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove unwanted dependences from pom.xml
return appiumDriver.get(); | ||
} | ||
|
||
private static AppiumDriver getIosDriver(Boolean isDeviceFarmRun) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since we are using only android driver remove the code related to iOS
super(driver); | ||
} | ||
|
||
public boolean isAddressAndContactPageTitleDisplay() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isAddressAndContactPageTitleDisplay >> isAddressAndContactPageTitleDisplayed
return element.getText(); | ||
} | ||
|
||
protected String retrieToGetElement(WebElement element) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove all unused methods
|
||
public IdentityProofPage clickimage() { | ||
clickOnElement(clickImageButton); | ||
clickOnElement(okButton); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use two separate methods
} | ||
|
||
public boolean isConsentpageDisplay() { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove space
public class ConsentPage extends BasePage{ | ||
|
||
@AndroidFindBy(accessibility = "Consent") | ||
private WebElement consentpage; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consentpage >> consentPage
private WebElement checkBox; | ||
|
||
@AndroidFindBy(accessibility = "INFORMED") | ||
private WebElement informed; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
informed >> informedButton
private WebElement consentpage; | ||
|
||
@AndroidFindBy(uiAutomator = "new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().className(\"android.widget.CheckBox\"))") | ||
private WebElement checkBox; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checkBox >> termAndConditionCheckBox
return isElementDisplayed(consentpage); | ||
} | ||
|
||
public void clickOnCheckBoxButton() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clickOnCheckBoxButton >> selectTermAndConditionCheckbox
public class DemographicPage extends BasePage{ | ||
|
||
@AndroidFindBy(accessibility = "Demographic Details") | ||
private WebElement demographicdetails; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
demographicdetails >> demographicDetails
private WebElement firstNameTextBox; | ||
|
||
@AndroidFindBy(uiAutomator = "UiSelector().className(\"android.widget.EditText\").instance(1)") | ||
private WebElement firstNameTextBoxSecondlang; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
firstNameTextBoxSecondlang >> firstNameTextBoxSecondLanguage
private WebElement firstNameTextBoxSecondlang; | ||
|
||
@AndroidFindBy(uiAutomator = "UiSelector().className(\"android.widget.EditText\").instance(2)") | ||
private WebElement lasttNameTextBox; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lasttNameTextBox >> lastNameTextBox
private WebElement lasttNameTextBox; | ||
|
||
@AndroidFindBy(uiAutomator = "UiSelector().className(\"android.widget.EditText\").instance(3)") | ||
private WebElement lastNameTextBoxSecondLang; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lastNameTextBoxSecondLang >> lastNameTextBoxSecondLanguage
private WebElement ageTextBox; | ||
|
||
@AndroidFindBy(accessibility = "Male") | ||
private WebElement male; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
male >> maleButton
private WebElement male; | ||
|
||
@AndroidFindBy(accessibility = "Female") | ||
private WebElement female; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
female >> femaleButton
private WebElement selectMaritalStatus; | ||
|
||
@AndroidFindBy(accessibility = "Single") | ||
private WebElement single; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
single >> singleValueFromDropdown
private WebElement single; | ||
|
||
@AndroidFindBy(accessibility = "CONTINUE") | ||
private WebElement continuebutton; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
continuebutton >> continueButton
|
||
public DemographicPage(AppiumDriver driver) { | ||
super(driver); | ||
// TODO Auto-generated constructor stub |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove unwanted comments
} | ||
|
||
public boolean isDemographicDetailsPageDisplay() { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove space
clickAndsendKeysToTextBox(ageTextBox,age); | ||
} | ||
|
||
public boolean getenterfirstNameTextBoxSecondlang() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getenterfirstNameTextBoxSecondlang >> checkFirstNameSecondLanguageTextBoxNotNull
} | ||
|
||
public boolean getenterfirstNameTextBoxSecondlang() { | ||
if(getTextFromLocator(firstNameTextBoxSecondlang)==null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check null or empty both
} | ||
|
||
public boolean getenterLastNameTextBoxSecondlang() { | ||
if(getTextFromLocator(lastNameTextBoxSecondLang)==null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lastNameTextBoxSecondLang >> checkLastNameSecondLanguageTextBoxNotNull
private WebElement welcome; | ||
|
||
@AndroidFindBy(accessibility = "HELP") | ||
private WebElement help; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
help >> helpButton
private WebElement help; | ||
|
||
@AndroidFindBy(accessibility = "BACK") | ||
private WebElement back; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
back >> backButton
private WebElement back; | ||
|
||
@AndroidFindBy(accessibility = "Forgot Password?") | ||
private WebElement forgetPassword; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
forgetPassword >> forgetPasswordButton
private WebElement forgetPassword; | ||
|
||
@AndroidFindBy(accessibility = "User not found!") | ||
private WebElement userNotFoundErrorMsg; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
userNotFoundErrorMsg >> userNotFoundErrorMessage
private WebElement userNotFoundErrorMsg; | ||
|
||
@AndroidFindBy(accessibility = "Password incorrect!") | ||
private WebElement passwordIncorrectErrorMsg; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
passwordIncorrectErrorMsg >> passwordIncorrectErrorMessage
private WebElement passwordIncorrectErrorMsg; | ||
|
||
@AndroidFindBy(accessibility = "English") | ||
private WebElement english; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
english >> englishButton
change below as well.
} | ||
|
||
|
||
public void enterusername(String username) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enterusername >> enterUserName
clickOnElement(back); | ||
} | ||
|
||
public void enterpassword(String password) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enterpassword >> enterPassword
return new RegistrationTasksPage(driver); | ||
} | ||
|
||
public boolean isNextButtonEnable() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isNextButtonEnable >> isNextButtonEnabled
} | ||
|
||
public void selectLanguage(String language) { | ||
if(language.equalsIgnoreCase("eng")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to switch case
} | ||
} | ||
|
||
public static void enableAirplaneMode() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove all unwanted methods
@@ -0,0 +1,26 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this file
@@ -0,0 +1,23 @@ | |||
package BaseTest; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove UIN generation code
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: Jayesh Kharode <[email protected]>
Signed-off-by: jayesh12234 <[email protected]>
Signed-off-by: jayesh12234 <[email protected]>
* MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * Delete androidReg-clientTest/.classpath Signed-off-by: jayesh12234 <[email protected]> * Delete androidReg-clientTest/.metadata directory Signed-off-by: jayesh12234 <[email protected]> --------- Signed-off-by: Jayesh Kharode <[email protected]> Signed-off-by: jayesh12234 <[email protected]> Co-authored-by: Jayesh Kharode <[email protected]> Signed-off-by: Aviral Mishra <[email protected]>
* MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * Delete androidReg-clientTest/.classpath Signed-off-by: jayesh12234 <[email protected]> * Delete androidReg-clientTest/.metadata directory Signed-off-by: jayesh12234 <[email protected]> --------- Signed-off-by: Jayesh Kharode <[email protected]> Signed-off-by: jayesh12234 <[email protected]> Co-authored-by: Jayesh Kharode <[email protected]> Signed-off-by: Piyush7034 <[email protected]>
* MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * Delete androidReg-clientTest/.classpath Signed-off-by: jayesh12234 <[email protected]> * Delete androidReg-clientTest/.metadata directory Signed-off-by: jayesh12234 <[email protected]> --------- Signed-off-by: Jayesh Kharode <[email protected]> Signed-off-by: jayesh12234 <[email protected]> Co-authored-by: Jayesh Kharode <[email protected]> Signed-off-by: Piyush7034 <[email protected]>
* Fixed Changed fetch commit id Signed-off-by: Piyush7034 <[email protected]> * Fixed Added try catch for fetching commit ids Signed-off-by: Piyush7034 <[email protected]> * Fixed Added the qr code template changes to the acknowledgement template Signed-off-by: G S Prakash <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-414 (#247) * Changed fetch commit id Signed-off-by: Piyush7034 <[email protected]> * Added try catch for fetching commit ids Signed-off-by: Piyush7034 <[email protected]> * Added the qr code template changes to the acknowledgement template Signed-off-by: G S Prakash <[email protected]> * Updated the util configuration in the app Signed-off-by: G S Prakash <[email protected]> --------- Signed-off-by: Piyush7034 <[email protected]> Signed-off-by: G S Prakash <[email protected]> Co-authored-by: Piyush7034 <[email protected]> Co-authored-by: GSPrakashNaiduCyberpwn <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Values for all selected langauges added to dto (#248) Signed-off-by: Piyush7034 <[email protected]> * Rcf 403 - batch job sync before upload (#246) * transliteration fixes Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> * batch job sync before upload Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> * transliteration from any-any lang Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> --------- Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * QA platform (#249) * Values for all selected langauges added to dto Signed-off-by: Piyush7034 <[email protected]> * change env to qa-platform Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> --------- Signed-off-by: Piyush7034 <[email protected]> Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> Co-authored-by: Piyush7034 <[email protected]> Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Minor bugs (#252) * batch job & error message fix Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> * french transliteration & gender control bug fix Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> --------- Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Rcf 358 (#250) * RCF-377 fixed Signed-off-by: aviral-mishra-hunter <[email protected]> * Overflow Fix Signed-off-by: aviral-mishra-hunter <[email protected]> * Disabled language whose localization file is not available Signed-off-by: Piyush7034 <[email protected]> * Small fix Signed-off-by: Piyush7034 <[email protected]> * Added locale codes in a constants file Signed-off-by: Piyush7034 <[email protected]> * Fixed packet auth page ui Signed-off-by: Piyush7034 <[email protected]> * Added more locales to constants Signed-off-by: Piyush7034 <[email protected]> * Some changes in auto sync Signed-off-by: Piyush7034 <[email protected]> * Fixed auto sync issue Signed-off-by: Piyush7034 <[email protected]> * Some changes in save version Signed-off-by: Piyush7034 <[email protected]> * Changed save all headers Signed-off-by: Piyush7034 <[email protected]> * changed qa-trinity to qa-platform Signed-off-by: Piyush7034 <[email protected]> --------- Signed-off-by: aviral-mishra-hunter <[email protected]> Signed-off-by: Piyush7034 <[email protected]> Co-authored-by: aviral-mishra-hunter <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Rcf 415 (#253) * Changed app langauge to be same as mandatory language Signed-off-by: Piyush7034 <[email protected]> * Mandatory language as first language in the list Signed-off-by: Piyush7034 <[email protected]> --------- Signed-off-by: Piyush7034 <[email protected]> * [RCF-407] , [RCF-423] , [RCF-420] (#254) * RCF-407 Resolved Signed-off-by: Aviral Mishra <[email protected]> * Initial Commits Signed-off-by: Aviral Mishra <[email protected]> * RCF-420 Fixed Signed-off-by: Aviral Mishra <[email protected]> * [RCF-407] , [RCF-423] , [RCF-420] Signed-off-by: Aviral Mishra <[email protected]> * Some additional changes Signed-off-by: Aviral Mishra <[email protected]> --------- Signed-off-by: Aviral Mishra <[email protected]> Co-authored-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-411 (#251) * removed reference id text field mandatory option Signed-off-by: Sachin S P <[email protected]> * fixed the alignment issue Signed-off-by: Sachin S P <[email protected]> --------- Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Final changes (#255) * Final Changes Signed-off-by: Aviral Mishra <[email protected]> * UI Changes Signed-off-by: Aviral Mishra <[email protected]> --------- Signed-off-by: Aviral Mishra <[email protected]> Co-authored-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Changed MPL license to MIT license (#256) Signed-off-by: Piyush7034 <[email protected]> * audit added before batch job (#257) Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Updated the string of Sync Packet Signed-off-by: G S Prakash <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Overflow Fix Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-435 Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Minor Change Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-451 Fixed Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Radio Button Fix for Synergy Env Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * text alignment for arabic Signed-off-by: Aditya Singh <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * dynamic alignment of lang text Signed-off-by: Aditya Singh <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * fixed retrigger multiple time at the T-0 minute Signed-off-by: Aditya Singh <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * minor changes Signed-off-by: Aditya Singh <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * default cron expression added Signed-off-by: Aditya Singh <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * added to constant Signed-off-by: Aditya Singh <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-214, RCF-212 and RCF-216 (#261) * added mavel native code Signed-off-by: Sachin S P <[email protected]> * changed the new code error Signed-off-by: Sachin S P <[email protected]> * fixed the ui break issue Signed-off-by: Sachin S P <[email protected]> * document upload screen based on mavel script and application doc type Signed-off-by: Sachin S P <[email protected]> * document upload screen validation Signed-off-by: Sachin S P <[email protected]> * document upload screen exception proof function Signed-off-by: Sachin S P <[email protected]> * exception proof validation Signed-off-by: Sachin S P <[email protected]> * made some merge changes Signed-off-by: Sachin S P <[email protected]> --------- Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * script added in pigeon.sh (#269) Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Revert RCF 216 (#275) * reverted code Signed-off-by: Sachin S P <[email protected]> * reverted code Signed-off-by: Sachin S P <[email protected]> --------- Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-460: Fixed cacerts sync issue (#271) Signed-off-by: HimajaDhanyamraju2 <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Functions added in User Onboard Service from Registrarion Client User Onboard Service Impl Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-35: Added service classes for onboarding Signed-off-by: HimajaDhanyamraju2 <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Initial Commit Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * First view Added Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Saving data Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * UI Complete for Onboarding Operator Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Operation Biometric Capture Backend Complete Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * fixed Save Operator Biometrics in progress Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Operator Biometrics Saving In progress Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Threshold added for operator biometrics Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * fixed RCF-35: User onboarding changes Signed-off-by: HimajaDhanyamraju2 <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-35: Fix in saving biometrics to DB Signed-off-by: HimajaDhanyamraju2 <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Fixed Added fix for operator onboard saving Signed-off-by: Piyush7034 <[email protected]> * RCF-399 Resolved (#283) Signed-off-by: Aviral Mishra <[email protected]> Co-authored-by: Aviral Mishra <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Android14 patch (#282) * android 14 alarm permission request added Signed-off-by: Aditya Singh <[email protected]> * patch-fixes changes added Signed-off-by: Aditya Singh <[email protected]> --------- Signed-off-by: Aditya Singh <[email protected]> Co-authored-by: Aditya Singh <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * MOSIP-31687 (#292) * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * MOSIP-31687 Signed-off-by: Jayesh Kharode <[email protected]> * Delete androidReg-clientTest/.classpath Signed-off-by: jayesh12234 <[email protected]> * Delete androidReg-clientTest/.metadata directory Signed-off-by: jayesh12234 <[email protected]> --------- Signed-off-by: Jayesh Kharode <[email protected]> Signed-off-by: jayesh12234 <[email protected]> Co-authored-by: Jayesh Kharode <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Added null check conditions (#289) Signed-off-by: Piyush7034 <[email protected]> * Changed build branch from feature-flutter to develop (#287) Signed-off-by: Piyush7034 <[email protected]> * added event id for scan button and preview doc (#293) Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * Added back button functionality on registration screen (#263) * Added back button functionality on registration screen Signed-off-by: Piyush7034 <[email protected]> * Changed print ack event id to REG-EVT-012 Signed-off-by: Piyush7034 <[email protected]> --------- Signed-off-by: Piyush7034 <[email protected]> * Fixed document upload screen based on mavel script (#281) * document upload screen based on mavel script Signed-off-by: Sachin S P <[email protected]> * resolve merge conflict Signed-off-by: Sachin S P <[email protected]> --------- Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-88 DashBoard UI (#291) * dashboard ui and functionality Signed-off-by: Sachin S P <[email protected]> * dashboard ui and functionality Signed-off-by: Sachin S P <[email protected]> * handle null check Signed-off-by: Sachin S P <[email protected]> * null handle Signed-off-by: Sachin S P <[email protected]> * dashboard ui and functionality Signed-off-by: Sachin S P <[email protected]> * commented 30 days logic Signed-off-by: Sachin S P <[email protected]> * commented 30 days logic Signed-off-by: Sachin S P <[email protected]> * changed the logic and name Signed-off-by: Sachin S P <[email protected]> --------- Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-88 (#301) * dashboard ui and functionality Signed-off-by: Sachin S P <[email protected]> * dashboard ui and functionality Signed-off-by: Sachin S P <[email protected]> * handle null check Signed-off-by: Sachin S P <[email protected]> * null handle Signed-off-by: Sachin S P <[email protected]> * dashboard ui and functionality Signed-off-by: Sachin S P <[email protected]> * commented 30 days logic Signed-off-by: Sachin S P <[email protected]> * commented 30 days logic Signed-off-by: Sachin S P <[email protected]> * changed the logic and name Signed-off-by: Sachin S P <[email protected]> * removed some import Signed-off-by: Sachin S P <[email protected]> --------- Signed-off-by: Sachin S P <[email protected]> Co-authored-by: Sachin S P <[email protected]> Signed-off-by: Piyush7034 <[email protected]> * RCF-431 Fixed and rescan enabled for operator onboarding Signed-off-by: Aviral Mishra <[email protected]> * Pigeon Issue Resolved Signed-off-by: Aviral Mishra <[email protected]> * Removed vscode file Signed-off-by: Aviral Mishra <[email protected]> * Removed VScode folder Signed-off-by: Aviral Mishra <[email protected]> * Fixed timestamp issue Signed-off-by: Piyush7034 <[email protected]> * Operator Saving fail scenario added Signed-off-by: Aviral Mishra <[email protected]> --------- Signed-off-by: Piyush7034 <[email protected]> Signed-off-by: G S Prakash <[email protected]> Signed-off-by: Aditya Singh(aditya.singh509) <[email protected]> Signed-off-by: aviral-mishra-hunter <[email protected]> Signed-off-by: Aviral Mishra <[email protected]> Signed-off-by: Sachin S P <[email protected]> Signed-off-by: Aditya Singh <[email protected]> Signed-off-by: HimajaDhanyamraju2 <[email protected]> Signed-off-by: Jayesh Kharode <[email protected]> Signed-off-by: jayesh12234 <[email protected]> Co-authored-by: G S Prakash <[email protected]> Co-authored-by: G S Prakash Naidu <[email protected]> Co-authored-by: GSPrakashNaiduCyberpwn <[email protected]> Co-authored-by: Aditya Singh <[email protected]> Co-authored-by: Aditya Singh(aditya.singh509) <[email protected]> Co-authored-by: aviral-mishra-hunter <[email protected]> Co-authored-by: Aviral Mishra <[email protected]> Co-authored-by: Aviral Mishra <[email protected]> Co-authored-by: Sachin s p <[email protected]> Co-authored-by: Sachin S P <[email protected]> Co-authored-by: Aditya Singh <[email protected]> Co-authored-by: Himaja Dhanyamraju <[email protected]> Co-authored-by: HimajaDhanyamraju2 <[email protected]> Co-authored-by: jayesh12234 <[email protected]> Co-authored-by: Jayesh Kharode <[email protected]>
No description provided.