I will give a talk at Techila Con Online

Excited to be joining Techila Con as a speaker and will give a talk about The Test Automation Challenges with Mobile Apps Development at Techila Con Online on JUN 13 at 7:00 pm, it's a free and online event, you can get your ticket from here https://ticketing.eventtus.com/4e15vj7jb5w67r2hmd6hibxrkh9dhf0q/tickets?fbclid=IwAR1erqD8AgchpKzeuDSqadQqABynIIPkRC1dmmI6tR_vg6aAzPWwMZREECs https://www.facebook.com/events/871136280063656/

Important Update About SeleniumWebDriver and C#

SeleniumWebDriver v3.11.1 for C# Marked .NET PageFactory obsolete. Additionally, using the PageFactory provides no benefit over other methods of Page Object creation in .NET. The existing code has been migrated to a new repository under a new organization on GitHub (https://lnkd.in/dWqhBq4 Users should update their references and migrate their code to use `SeleniumExtras.PageFactory`.    Source: … Continue reading Important Update About SeleniumWebDriver and C#

Headless Testing becomes easy now with Chrome and Firefox

  Headless Testing with Chrome and Firefox using Selenium WebDriver(latest version) becomes easy now:- -For Chrome (latest Version): System.setProperty("webdriver.chrome.driver","chromedriver exe path"); ChromeOptions chromeOptions = new ChromeOptions(); chromeOptions.addArguments("--headless"); driver = new ChromeDriver(chromeOptions); -For Firefox 57(Quantum): System.setProperty("webdriver.firefox.driver","firefoxdriver exe path"); FirefoxOptions firefoxOptions = new FirefoxOptions(); firefoxOptions.setCapability("marionette", true); firefoxOptions.setHeadless(true); driver = new FirefoxDriver(firefoxOptions);

Administering Visual Studio Team Foundation Server 2012 Jump Start

Microsoft Visual Academy (a cloud-based learning experience focusing on Microsoft Technologies and hosted on the latest Microsoft Azure technology) offered course that learn how to make Team Foundation Server (TFS) better serve your team processes and the ways you communicate. For the person who sets up and customizes TFS infrastructure, you will learn how to … Continue reading Administering Visual Studio Team Foundation Server 2012 Jump Start