Skip to content
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-31999 #299

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public void execute(Connection connection) throws SQLException {
try {
;
statement.addBatch("delete from applicant_valid_document where cr_by ='"+BaseClass.userid+"'");
statement.addBatch("delete from appl_form_type where cr_by ='"+BaseClass.userid+"'");
// statement.addBatch("delete from appl_form_type where cr_by ='"+BaseClass.userid+"'");
statement.addBatch("delete from biometric_attribute where cr_by ='"+BaseClass.userid+"'");
statement.addBatch("delete from biometric_type where cr_by ='"+BaseClass.userid+"'");
statement.addBatch("delete from blocklisted_words where cr_by ='"+BaseClass.userid+"'");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ public static void edit(ExtentTest test,WebDriver driver,String data,By by) {
Commons.enter(test,driver, by, data);

Commons.click(test,driver, By.id("createButton"));
Commons.click(test,driver,By.id("confirmpopup"));
Commons.click(test,driver, By.id("confirmmessagepopup"));

logger.info("Click Edit and Confirm" + by + data);
Expand Down Expand Up @@ -428,8 +429,8 @@ public static void editCenter(ExtentTest test,WebDriver driver,String data,By by
public static void create(ExtentTest test,WebDriver driver) throws IOException {

Commons.click(test,driver, By.xpath("//button[@id='createButton']"));
Commons.click(test,driver, By.id("confirmmessagepopup"));

Commons.click(test,driver, By.id("confirmpopup"));
Commons.click(test,driver, By.id("confirmmessagepopup"));
logger.info("Click create");
}
public static void createRes(ExtentTest test,WebDriver driver) throws IOException {
Expand Down
Loading