Similar Posts
Skip Selenium TestCase Run using TestNG – User friendly Tech help
Scenario:-We have a test case in the test set, which is not ready for testing and we wont this test case to be disabled while Selenium is executing the complete test suite.nnSolution:-nWe can disabled the test case in TestNG using enabled property.nnSyntaxn@Test(enabled=false)nBy default it is enabled= truennCode:-nnXML file:-nn n nJava:-n n package TestNG_Learning;import java.util.concurrent.TimeUnit;import org.openqa.selenium.By;import…
Handy tips and Tools for working with wordpress -Part1? – User friendly Tech help
Don’t judge each day by the harvest you reap but by the seeds that you plant.” Robert Louis Stevenson n 1.How to add icons in wordpress pages ?nSolution:-nBy using the “Better Font Awesome” pluginnSteps1:- Install and activate the plugin in wordpress. n Steps2:- Search the given icon from the font-awesome library, add the code in…
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 …
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:-…
lwc – User friendly Tech help
import { LightningElement, track } from ‘lwc’; export default class HelloLWC extends LightningElement { //default values @track typedValue = ”; salutationOptions = [ {‘label’: ‘None’, ‘value’: ‘None’}, {‘label’: ‘Mr.’, ‘value’: ‘Mr.’}, {‘label’: ‘Ms.’, ‘value’: ‘Ms.’}, {‘label’: ‘Mrs.’, ‘value’: ‘Mrs.’}, {‘label’: ‘Dr.’, ‘value’: ‘Dr.’}, {‘label’: ‘Prof.’, ‘value’: ‘Prof.’}, ]; //method on click of button handleClick(){ const…
Parallel execution of Tests in TestNG – User friendly Tech help
Scenario:–nHow we can achieve running of parallel set of tests in TestNG.n n n n n n Parallel Run n n n Solution:-nWe are already done with cross browser testing using TestNG, we would utilize the same example here to design our solution.nnTest Scenario:-nWe want parallel instances of Test Case one in Firefox and another…