Selenide - The Small Brother Of Selenium Making Big Strides In The Open Source Community
???? Khaja Moinuddin Mohammed ????
Talks about Containers, Kubernetes, Cloud, Linux and Open Source in General
Are you using Selenium? Chances are u doing it hard way.Let me show an example. If you were to automate Google search with Selenium WebDriver chances are you might be writing something as below (its simple stupid code, without using Page Objects or any other design patterns)...
driver.findElement(By.name("q")).sendKeys("Hello World");
driver.findElement(By.id("blawblawblaw").Click();
now what if i say the same can be accomplished with this one line of code (don't worry about the $, life will become more easy as you go)
$(By.name("q")).val("selenide").pressEnter();
check this link https://selenide.org/
QA Automation Engineer at TriState Capital Bank
9 年Wow this tool is really cool.. ??