This is brilliant. I'm amazed that you don't try run the script in each section as you have the confidence that it will work when you have finished coding. Really good. 👍 I tried this and it's asking me to create an account for the given website. That was the only issue I had.
@abhishekshahi12093 ай бұрын
Thank you so much sir. The way of explaining is absolutely amazing. Thanks a lot sir.
@chandrasekhar29694 ай бұрын
Thank you sir, I want be a full Automation test engineer in selenium with Java. This all video's ,whic you are provided is this videos enough for that.
@francistabora15806 күн бұрын
You did a great video sir, thank you a lot. I have a question : Is it possible to automate Microsoft Excel Online with Selenium ? or How can I automate Microsoft Excel Online version ??
@KiranKumar-pm2ui4 ай бұрын
Thank you very much for clarity explanation and kindly upload remaining videos
@sdetpavan4 ай бұрын
Welcome
@nareshan51784 ай бұрын
Yes, it’s very clear. Thank you
@sdetpavan4 ай бұрын
Welcome
@akeemolalere79153 ай бұрын
Finished the assignment....Thank you sir
@priyankakanumuri74593 ай бұрын
can you share me utility file
@srprohit13493 ай бұрын
Can you share the assignment bro
@akeemolalere79153 ай бұрын
@@srprohit1349 finished the assignment I could share it to you if you dont mind
@shubhamlavekar68862 ай бұрын
bro please share code pleaee?
@anjalianjali6464 ай бұрын
Hello sir Thank you once again sir😊Today i will attend interview on softsuave technology Only iam able to answer what did u teach in last 41session iam not selected but I will done better with compared to my previous interview i hope one day i will become tester on this field with your wishing 👍thank you sir👍
The excel code you have written in Utility, How we can access?
@Shinelikeastar-is7yy2 ай бұрын
Hello sir… how to handle that push notification coming after launching browser (url) Thanks
@Aayaan-y2s20 күн бұрын
Hello Pavan Sir, Please share the utilities code. Without that we can not practice.
@vanajaseshadri55294 ай бұрын
Thank you so much sir..
@sdetpavan4 ай бұрын
Most welcome
@ranjithv1334 ай бұрын
Thank you sir and team.
@sdetpavan4 ай бұрын
Welcome
@sayedraheman852923 күн бұрын
Sr..which video number is about frame work..like cocumber😊😊
@proudmodi4 ай бұрын
Good evening sir
@MS-dg9li4 ай бұрын
Sir.. test case likhne k liye best way for beginners... Facing lot of issues.. Please help me
@yuvrajbhamare90214 ай бұрын
Hello sir,I realy love your style of teaching,lot of respect But always 1 question disturbs that,will AI or codeless automation tools replace selenium?please answer this sir.
@cuddletheshihtzu4 ай бұрын
Sir will BDD and maven, cucumber, jenkins also be covered in next videos ?
@akshaykathole68024 ай бұрын
Good Evening Sir.
@parthasarathipradhan34203 ай бұрын
sir, where i find utility class
@harikrishna-km2cp2 ай бұрын
Hi Pavan sir, please provide the link of sbi url too
@crazyviralteam57964 ай бұрын
is it completed or some part is pending?
@manjulacn32894 ай бұрын
Good evening sir😊😊
@SanjeetKumar-xq5lmАй бұрын
from where i got the excel utils file
@PratikNaidu4 ай бұрын
Hello Sir, Session 41 Data Driven Testing with MS-Excel, In that I am getting an error of "java.lang.NoSuchMethodError: 'java.io.File org.openqa.selenium.internal.Require$FileStateChecker.isExecutable()" while executing program. I have written every single step as per video its throwing an error. Please Reply as soon as possible.
@akeemolalere79153 ай бұрын
I can help you out
@PratikNaidu3 ай бұрын
@@akeemolalere7915 please do help me.please give me the solution
@srprohit13493 ай бұрын
@@akeemolalere7915can you help me now....
@srprohit13493 ай бұрын
@@akeemolalere7915 bro can you help me
@purnimasadanala93444 ай бұрын
hi sir can we get live classes
@chandrasekhar29694 ай бұрын
Give me your valuable feedback.
@dileepkumar-zr8co4 ай бұрын
Hello I didn't found 1 to 40 session for selenium which is recently uploaded
@dilipkumarp73964 ай бұрын
check the play list bro
@watchit99644 ай бұрын
Please upload the remaining videos
@rishavraj11422 ай бұрын
Please provide the excel utility file sir ,I already explored your github but unable to find there.
@harshalchaudhari70652 ай бұрын
Hi can you please provide the link for sir's github?
@Aruna123QA2 ай бұрын
Anyone know's where to find solutions for assignments?
@mohdafzal82082 ай бұрын
Sir please tell me where to find assignment solutions and utility files...
@mitrabhanuprusty194829 күн бұрын
package excel; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.DataFormatter; import org.apache.poi.ss.usermodel.FillPatternType; import org.apache.poi.ss.usermodel.IndexedColors; import org.apache.poi.xssf.usermodel.XSSFCell; import org.apache.poi.xssf.usermodel.XSSFRow; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class ExcelUtils { public static FileInputStream fis; public static FileOutputStream fos; public static XSSFWorkbook wb; public static XSSFSheet ws; public static XSSFRow row; public static XSSFCell cell; public static CellStyle style; public static int getRowCount(String xlfile, String xlsheet) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); int rowCount = ws.getLastRowNum(); wb.close(); fis.close(); return rowCount; } public static int getCellCount(String xlfile, String xlsheet, int rowNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); int cellCount = row.getLastCellNum(); wb.close(); fis.close(); return cellCount; } public static String getCellData(String xlfile, String xlsheet, int rowNum, int colNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); String data; try { // data=cell.toString(); DataFormatter formatter = new DataFormatter(); data = formatter.formatCellValue(cell);// Returns the formatted value of cell as a string } catch (Exception e) { data = ""; } wb.close(); fis.close(); return data; } public static void setCellData(String xlfile, String xlsheet, int rowNum, int colNum, String Data) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); cell = row.getCell(colNum); cell.setCellValue(Data); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } public static void fillGreenColor(String xlfile, String xlsheet, int rowNum, int colNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); style = wb.createCellStyle(); style.setFillForegroundColor(IndexedColors.GREEN.getIndex()); style.setFillPattern(FillPatternType.SOLID_FOREGROUND); cell.setCellStyle(style); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } public static void fillRedColor(String xlfile, String xlsheet, int rownum, int column) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rownum); cell = row.getCell(column); style = wb.createCellStyle(); style.setFillForegroundColor(IndexedColors.RED.getIndex()); style.setFillPattern(FillPatternType.SOLID_FOREGROUND); cell.setCellStyle(style); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } }
@sridharj32854 ай бұрын
👍
@KiranKumar-pm2ui4 ай бұрын
Kindly upload remaining videos
@rishavraj11422 ай бұрын
how can i get these excel utility file
@chikudi11704 ай бұрын
Sir when to start Python automation batch..... Pls reply
@ram-b2z3 ай бұрын
Sir, How to get utility files?
@mitrabhanuprusty194829 күн бұрын
package excel; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.DataFormatter; import org.apache.poi.ss.usermodel.FillPatternType; import org.apache.poi.ss.usermodel.IndexedColors; import org.apache.poi.xssf.usermodel.XSSFCell; import org.apache.poi.xssf.usermodel.XSSFRow; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class ExcelUtils { public static FileInputStream fis; public static FileOutputStream fos; public static XSSFWorkbook wb; public static XSSFSheet ws; public static XSSFRow row; public static XSSFCell cell; public static CellStyle style; public static int getRowCount(String xlfile, String xlsheet) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); int rowCount = ws.getLastRowNum(); wb.close(); fis.close(); return rowCount; } public static int getCellCount(String xlfile, String xlsheet, int rowNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); int cellCount = row.getLastCellNum(); wb.close(); fis.close(); return cellCount; } public static String getCellData(String xlfile, String xlsheet, int rowNum, int colNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); String data; try { // data=cell.toString(); DataFormatter formatter = new DataFormatter(); data = formatter.formatCellValue(cell);// Returns the formatted value of cell as a string } catch (Exception e) { data = ""; } wb.close(); fis.close(); return data; } public static void setCellData(String xlfile, String xlsheet, int rowNum, int colNum, String Data) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); cell = row.getCell(colNum); cell.setCellValue(Data); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } public static void fillGreenColor(String xlfile, String xlsheet, int rowNum, int colNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); style = wb.createCellStyle(); style.setFillForegroundColor(IndexedColors.GREEN.getIndex()); style.setFillPattern(FillPatternType.SOLID_FOREGROUND); cell.setCellStyle(style); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } public static void fillRedColor(String xlfile, String xlsheet, int rownum, int column) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rownum); cell = row.getCell(column); style = wb.createCellStyle(); style.setFillForegroundColor(IndexedColors.RED.getIndex()); style.setFillPattern(FillPatternType.SOLID_FOREGROUND); cell.setCellStyle(style); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } }
@raghu99974 ай бұрын
Sir still how many sessions left to complete full course
@ECE-KAVYAV4 ай бұрын
Same doubt
@Sandeepsunny-z7y4 ай бұрын
please be patience bro. sir is giving full and clear information. it will take time but no other you tuber giving this much of knowledge
@raghu99974 ай бұрын
@@Sandeepsunny-z7y yeah
@ram-b2z3 ай бұрын
Anyone? knows where will i get those utility files?
@kamephileАй бұрын
No where bro You have make at your own😂
@ram-b2z3 ай бұрын
Sir, How to get those utility files...anyone?
@mitrabhanuprusty194829 күн бұрын
package excel; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.DataFormatter; import org.apache.poi.ss.usermodel.FillPatternType; import org.apache.poi.ss.usermodel.IndexedColors; import org.apache.poi.xssf.usermodel.XSSFCell; import org.apache.poi.xssf.usermodel.XSSFRow; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class ExcelUtils { public static FileInputStream fis; public static FileOutputStream fos; public static XSSFWorkbook wb; public static XSSFSheet ws; public static XSSFRow row; public static XSSFCell cell; public static CellStyle style; public static int getRowCount(String xlfile, String xlsheet) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); int rowCount = ws.getLastRowNum(); wb.close(); fis.close(); return rowCount; } public static int getCellCount(String xlfile, String xlsheet, int rowNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); int cellCount = row.getLastCellNum(); wb.close(); fis.close(); return cellCount; } public static String getCellData(String xlfile, String xlsheet, int rowNum, int colNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); String data; try { // data=cell.toString(); DataFormatter formatter = new DataFormatter(); data = formatter.formatCellValue(cell);// Returns the formatted value of cell as a string } catch (Exception e) { data = ""; } wb.close(); fis.close(); return data; } public static void setCellData(String xlfile, String xlsheet, int rowNum, int colNum, String Data) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); cell = row.getCell(colNum); cell.setCellValue(Data); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } public static void fillGreenColor(String xlfile, String xlsheet, int rowNum, int colNum) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rowNum); cell = row.getCell(colNum); style = wb.createCellStyle(); style.setFillForegroundColor(IndexedColors.GREEN.getIndex()); style.setFillPattern(FillPatternType.SOLID_FOREGROUND); cell.setCellStyle(style); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } public static void fillRedColor(String xlfile, String xlsheet, int rownum, int column) throws IOException { fis = new FileInputStream(xlfile); wb = new XSSFWorkbook(fis); ws = wb.getSheet(xlsheet); row = ws.getRow(rownum); cell = row.getCell(column); style = wb.createCellStyle(); style.setFillForegroundColor(IndexedColors.RED.getIndex()); style.setFillPattern(FillPatternType.SOLID_FOREGROUND); cell.setCellStyle(style); fos = new FileOutputStream(xlfile); wb.write(fos); wb.close(); fis.close(); fos.close(); } }
@kamephileАй бұрын
At 1:20:01 Black has filled in Result column Anyone can help