Similar Posts
Uncategorized – User friendly Tech help
Problem:- How to install the latest free edition of oracle database with IDE?Solution:-A) First we’ll install oracle database and then install the sql developer ide. Steps:-Follow the below steps to install the 11g database(latest when this post was written)Download the latest oracle version for ubuntu Unzip using the command: unzip oracle-xe-11.2.0-1.0.x86_64.rpm.zip Install required packages using…
Robot Framework- Working with Excel Library(Part-2) – User friendly Tech help
Life is short..share while you still have knowledge.nWe started with installation of Excel Library in Robot Framework , today we would focus on utilizing the keywords present in the Excel Library.nNext is publishing run results into ExcelnnWe can connect on Fb,G+,Twitter to spread more learning.nnScenario:- How we can fetch data from Excel in Robot framework to parameter our test cases.nnSolution:-…
How to disable Right Click, using Angular JS? – User friendly Tech help
nRequirement:- We need to disable Right Click on links in our Angular JS Application?nn n n n n n Context-Menu default behaviour n n n nSolution:-nWe wrote a directive to override the default behaviour of “Context Menu”nnFurther we can use this directive to bind specific action on right click, using the contextmenu event.The contextmenu event fires when…
How to debug jest test cases(React)? – User friendly Tech help
Adding test cases to your code always helps in the long run, today we’re going to talk about how to debug test cases. n n Do something today that your future self will thank you for n n n Using our all-time favorite Console.logn it(‘should call touch & asyncValidate methods’, () => {n const component…
Robot Framework- Working with Excel Library(Part-3) – User friendly Tech help
After our installation and fetching data from excel we would move towards writing data into excel. n nScenario:-How to publish robot framework run results into Excel?nnWe can connect on Fb,G+,Twitter to find what we do next?.nnSolution:- nStep1:- Create excel at run time with given heading inside Results folder.(At “Suite Setup“)nStep2:- Add test details (at Test Case “Setup”) to…
Java – User friendly Tech help
Learn all about Java n Lets learn some of the basic and critical rules that we should know as JAVA developers. Being aware of a single shortcoming within yourself is far more useful than being aware of a thousand in someone else. 1. Name of Class should start with uppercase letter.Example:- MyFirstClass rather than myfirstclass2.Methods and…