Similar Posts
Example scenarios for working with Dictionary Object Using vbscript. – User friendly Tech help
Every day you wake up is a victory. Learn more and share more….nnConcept 1:-How to find the occurrence count of item in a given sample?nnn Using dictionary object we would find the count of occurrence of given value in the sample. n Example: – we need to find the “Help” words in the given string…
Image – User friendly Tech help
A wet man does not fear the rain. Issue:-How do I check if an object has a key in JavaScript? Example:- // Sample Object const REMINDER = “REMIND_ME”; reminderObj= { INBOX:`${REMINDER}_INBOX`, USERS:`${REMINDER}_USERS`, GROUPS:`${REMINDER}_GROUPS`, } Problem1: Now we want to check that our object have “INBOX” as key or not? Solution:- Object.prototype.hasOwnProperty.call(reminderObj,”INBOX”); Note:- We could directly…
AngularJS Interview Questions-Set1 – User friendly Tech help
Here comes our first set of Interview questions on Angular JS. Hope it assist the job aspirants to crack the interviews.nnDo like our Facebook page or follow on Twitter for more questions.nnIt is said “The end justifies the beginning” ,so begin right,prepare well for the interview and crack it.n n n n n n n…
Jmeter Error :- Cannot have single quote-char in quoted field:[“] ? – User friendly Tech help
Problem:-We used CSV data Set Config element in our Jmeter test to parameterize our request. But we faced the below error in logs:-nnERROR – jmeter.config.CSVDataSet: java.io.IOException: Cannot have single quote-char in quoted field:[“] nnSolution:- nOpen the “CSV Data Set Config” > Set “Allow quoted data?” to False (By default is true) n nWhy this as Jmeter by default will think…
How to work with IFrame in Selenium. – User friendly Tech help
Scenario:–nOur application has a iFrame control, how we can work with this control using Selenium.n n n n n n Learn to solve the iFrame puzzle in selenium n n n nSolution:-nLets try to understand iFrame first.nnWhat is iFrame?nAn iFrame (or Inline Frame) is an HTML document embedded inside the current HTML document on a…
Tools – User friendly Tech help
Problem:- How we can create(or provision) project using Sonar Qube UI. Solution:- We already know that we can Sonar Qube will automatically create a project when we run the code analysis but incase we want to manually provision the project before running the code scanning we can do that. 1)Login as administrator on sonar qube…