Understand Keyword Driven Framework by using UFT – (Part 3) – User friendly Tech help

We are on the last step of completion of our “Keyword Driven Framework“.we hope you are quiet comfortable with our last tutorials on architecture of Keyword Driven Framework-Part 1 and its various components with working code in Keyword Driven Framework- Part 2, before arriving on the final step.Here we are discussing the last component of our framework i.e our Keyword sheet.We would discuss its structure with…

How to fix error and get back to https with ssl? – User friendly Tech help

nOur attitude toward life determines life’s attitude towards us…n Error:-n nn  Solution:-nStep1:-nTemporarily remove secure connection: n gem sources -r https://rubygems.org/ n nnStep2:-nAdd insecure connectionnngem sources -a http://rubygems.org/nn n Step3:-nInstall compass gemnnnStep4:-nAfter installing compass do vice versa:na) gem sources -r http://rubygems.org/ – to remove insecure connectionnnb) gem sources -a https://rubygems.org/ – to add secure connectionnLearn More…

New input types in HTML5 – User friendly Tech help

Stop managing your time. nStart managing your focus.nnWe already discussed the new form elements in HTML5. Today we would highlight the new input types in HTML5. nnHow many of them was introduced?n13 New Input Types.nnFollow us to learn more .. Fb, G+,TwitternDoes my browser Supports them?nCheck the compatibility chart. If any of the browser does not supports it would…

Issue with Apex replay debugger on running debug logs in VS Code

Problem: While running the Apex replay debugger in VS Code on a debug file, an error message is generated. Solution: To address the error, update the first line of the log file before initiating the Apex debugger. Before Update: 48.0 APEX_CODE,FINEST;APEX_PROFILING,INFO;CALLOUT,INFO;DB,INFO;NBA,INFO;SYSTEM,DEBUG;VALIDATION,INFO;VISUALFORCE,INFO;WAVE,INFO;WORKFLOW,FINER After Update: 48.0 APEX_CODE,FINEST;APEX_PROFILING,INFO;CALLOUT,INFO;DB,INFO;NBA,INFO;SYSTEM,DEBUG;VALIDATION,INFO;VISUALFORCE,FINER;WAVE,INFO;WORKFLOW,FINER The logging level of the VF Page was changed to…

Using VSCode with Vlocity Salesforce

Prerequisite: Ensure you have the “Salesforce Vlocity Integration” extension installed in VSCode. Steps to Use Vlocity with VSCode: Activate the extension by pressing CTRL + SHIFT + P. Choose Vlocity: Select Salesforce Org. You can either use an existing verified Org with Salesforce or start with a fresh VSCode setup. Click on the vlocity cloud…

Exception handling in Java? – User friendly Tech help

Exception handling plays a crucial part in mastering Selenium, and designing Frameworks, thus we thought of digging deeper into this topic.We have also discussed about ways of handling Exceptions. n nLet’s begin with keynotes before starting with the detailed explanation:- n n An exception is any event, which interrupts the normal flow of the program execution….

Launching UFT with VAPI-XP from ALM? – User friendly Tech help

Let us further enhance our code to launch UFT script from VAPI-XP in ALM. We are already familiar with “Hello World!!” code in VAPI-XP .We are going to run the same line of code but this time we are utilizing UFT to execute it.nnRequirement:-nLaunching and running UFT script from VAPI-XP in ALMnnImplementation:-nStep1:- nCreate a simple Test…

Data Parameterization in TestNG – User friendly Tech help

Parameterization using TestNG plays a crucial role while creating the framework and automation scripts.It assists in running multiple iteration with different set of data.n n For example, we can achieve Parallel execution using TestNG, in that case browsers are passed as the parameters.n n There are two ways to parameterize in TestNG:n n 1.Using Parameters…