On Wednesday I will talking about Zalenium in Berlin

On Wednesday 09.05.2018 I will join Egyptian Techies in Berlin family to talking about Zalenium and How to run Selenium scripts using Docker and Selenium Grid ,the event will be hosted at Get Your Guide What is Zalenium? Zalenium is a Selenium Grid extension to scale your local grid dynamically with docker containers. It uses docker-selenium to run your tests in Firefox … Continue reading On Wednesday I will talking about Zalenium in Berlin

Featured

My First Course Published on Udemy!

Today I become an official Udemy instructor and Udemy approved my course about “Selenium Webdriver From Foundation to Framework in Arabic” , the first course for automation testing in Arabic. 👨‍💻 🤖 After 5 months of preparing , recording , coding , watching videos and reading different books related to automation and Selenium. Now you can start with this course from … Continue reading My First Course Published on Udemy!

Automated Layout Testing using Galen Framework

A very annoying task as you have to look at your website on a lot of different browsers. We used to perform a manual check on all these browsers at the end of website development, and as a result we get some layout issues and have to find hacks to fix these defects. But what if we … Continue reading Automated Layout Testing using Galen Framework

End-to-End Web Testing with TestCafe

A Node.js tool to automate end-to-end web testing.Write tests in JS or TypeScript, run them and view results What is E2E Testing ? End-to-end testing is where you test your whole application from start to finish. It involves assuring that all the integrated pieces of an application function and work together as expected. End-to-end tests … Continue reading End-to-End Web Testing with TestCafe

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#

UI Testing using Selenium WebDriver and Chrome inside AWS Lambda

  What is AWS Lambda? Amazon explains, AWS Lambda (λ) as a ‘serverless’ compute service, meaning the developers, don’t have to worry about which AWS resources to launch, or how will they manage them, they just put the code on lambda and it runs, it’s that simple! It helps you to focus on core-competency i.e. App … Continue reading UI Testing using Selenium WebDriver and Chrome inside AWS Lambda

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);

Penetration Testing With Selenium

  Penetration testing is one of those things that people don't often think about while they are building a product. It's usually seen as a phase of testing that is performed by a third party who has expertise in that area once a release has passed normal testing. The problem with this view is that fixing security problems at … Continue reading Penetration Testing With Selenium