Similar Posts
Running Selenium test case in Google Chrome? – User friendly Tech help
We have already learned to execute selenium test case in Firefox browser . Now we thought of running the same test on “Google Chrome”.nnRequirement:- Executing selenium webdriver test case in Google chrome for the first time.nnSolution:-nWe simply tried to change the previous code and passed the reference of “chromedriver”.nnBefore :-n WebDriver driver = new FirefoxDriver();nAfter:-n …
How to define Visual Relation identifier in UFT – User friendly Tech help
Step by Step guide to setting VRI in UFT:-n n n n n n n Select the object for enabling VRI then set the values n n n n n n n n Click on cross symbol to add the VRI relative objects n n n n n n n n Select from the existing…
Java – Page 2 – User friendly Tech help
What is Static Keyword in Java? Static means a field or an method that belongs to the class, rather than to an instance of the class.In simple terms, it means that we can call a static method/field even without creating the object of a class to which they belongs!.We can have a static method or…
Expand and collapse single Lightning web component Accordion
Problem: We need an account accordion that can be expanded and collapsed by the user. By default, it should be launched in a collapsed state. Solution: A custom solution was designed by playing with the properties of the current LWC accordion. The key was to use the “allow-multiple-sections-open” property and set the active section “active-section-name”…
Creating Pure Functional Component using React Memo – User friendly Tech help
import React from ‘react’;nimport Tabs from ‘../Tabs’;nimport ‘./RightPanel.scss’;nnnconst RightPanel = () => (n n n n n You are on Index.jsx filen n n You are on Panel.jsx filen n n n n);nnexport default RightPanel;n n Sample code where we are using Class component, when though we could have used functional component. n class RightPanel…
ActiveX component can’t create object: ‘Mercury.ObjectRepositoryUtil’ – User friendly Tech help
Recently we got this error while running our .vbs file, external to UFT. n It is a common error that one can encounter while working with .VBS files. n Let us focus on the possible solution for the same. n Please feel free to share your experience on the same.As always their are 100 of…