Selenium Connecting to Chromium Edge with Selenium 3 and 4 Alpha As you may or may not be aware, Edge is moving away from the EdgeHTML and Chakra engines and over to Chromium. Unfortunately getting your test code to work with the new Chromium Edge browser isn’t as easy as updating your web driver.
Selenium The Browser/OS Combination Problem The ProblemYou have N number of tests, O number of browsers and P number of operating systems. If you don’t think too much, it doesn’t sound that bad. Besides your using grid or Sauce Labs or something similar; how bad can it
Selenium Intro to Selenium Grid What is Grid?Grid, otherwise known as the Selenium standalone server, is a jar file. The grid jar can be run as a hub or node. Nodes register with hubs. Registering lets the hubs know what OS, browsers and browser versions are available on
Selenium What is the best “By” selector for Selenium, CSS or XPath? Short answer:CSS Why CSS:It is easier to learn/understandIt can do almost everything XPath canTypically faster than XPathIt’s used a lot on the development sideJQuery uses CSS extensivelyIt's used to style web pagesLong answer:It depends The right type of selector