This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Nestia extends Wrapper{ | |
public static void NestiaScript() throws IOException | |
{ | |
initialSetUp(); | |
login(); | |
execute(); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import com.addInfo.PostalCode; | |
import come.ExcelReadWrite.ExcelRead; | |
import come.ExcelReadWrite.ExcelWrite; | |
public class Flathub extends Wrapper | |
{ | |
static int mrow ; | |
public static void flathubScript() throws IOException | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package come.ExcelReadWrite; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileNotFoundException; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import org.apache.poi.ss.usermodel.Cell; | |
import org.apache.poi.xssf.usermodel.XSSFRow; | |
import org.apache.poi.xssf.usermodel.XSSFSheet; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import org.apache.commons.lang3.text.WordUtils; | |
import com.wrapper.Wrapper; | |
import add.info.PostalCode; | |
import excel.read.write.ExcelRead; | |
import excel.read.write.ExcelWrite; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.addInfo; | |
import java.util.HashMap; | |
public class PostalCode { | |
public static String getPostalCodeRegion(String postalCode) | |
{ | |
HashMap<String,String> hmap=new HashMap<String,String>(); | |
hmap.put("01", "Central"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.on; | |
import java.io.IOException; | |
import come.ExcelReadWrite.ExcelRead; | |
public class Sgroom extends Wrapper { | |
public static void sgroomScript() throws IOException | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.on; | |
import java.io.IOException; | |
import come.ExcelReadWrite.ExcelRead; | |
public class Locanto extends Wrapper { | |
public static void locantoScript() throws Exception | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package excel.read.write; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import org.apache.poi.ss.usermodel.Cell; | |
import org.apache.poi.ss.usermodel.Row; | |
import org.apache.poi.xssf.usermodel.XSSFSheet; | |
import org.apache.poi.xssf.usermodel.XSSFWorkbook; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.on; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.support.ui.ExpectedConditions; | |
import org.openqa.selenium.support.ui.WebDriverWait; | |
import come.ExcelReadWrite.ExcelRead; | |
public class IliveSG extends Wrapper{ | |
static int lrow; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.AWTException; | |
import java.awt.Robot; | |
import java.awt.Toolkit; | |
import java.awt.datatransfer.StringSelection; | |
import java.awt.event.KeyEvent; | |
import java.util.List; | |
import java.util.concurrent.TimeUnit; | |
import org.apache.commons.lang.StringUtils; | |
import org.openqa.selenium.By; |