public class AboutMe {
public static void main(String[] args) {
Shrijith profile = new Shrijith();
profile.displayProfile();
}
}
class Shrijith {
void displayProfile() {
printBanner("Shrijith PS");
printSection("Experience", "3+ years in Software Testing; Automation & Manual Testing; WebdriverIO | Cypress | Playwright");
printSection("About Me",
"🔭 Currently working as Test Engineer",
"🤝 Currently learning Playwright",
"💬 Ask me about Automation Testing",
"⚡ Reach me at [email protected]"
);
printSection("Connect with me",
"LinkedIn: https://linkedin.com/in/shrijithps",
"LeetCode: https://www.leetcode.com/shrijith98"
);
printSection("Languages", "JavaScript, Java, Python, C++");
printSection("Tools",
"WebdriverIO, Cypress, Playwright, Selenium, Cucumber, Postman, JMeter, Git, JIRA"
);
}
private void printBanner(String name) {
System.out.println("********** " + name + " **********");
}
private void printSection(String title, String... details) {
System.out.println("\n=== " + title + " ===");
for (String detail : details) {
System.out.println("-> " + detail);
}
}
}
Popular repositories Loading
-
-
-
GitHubActions
GitHubActions PublicSimple Maven Project which launches chromedriver, open google and gets the title of google page using github actions
HTML
-
webScraping
webScraping PublicPython code to extract top 250 IMDB rated movies, write to a excel and search for a movie
Python
-
-
requestsModuleBasics
requestsModuleBasics PublicBasic HTTP Requests using Python requests module
Python
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.