UrbanPro
true
Konda Reddy Selenium trainer in Bangalore featuredIcon

Konda Reddy

locationImg Krishnarajapura Vidya Nagar, Bangalore
15 yrs of Exp
students 1 student
Contact
Contact

Details verified of Konda Reddy

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

SeleniumJava,Python,Playwright with TypeScript/Appium,SoftwareCourses for All Professionals/Students

Online Classes
Student's home
Tutor's home
I teach Selenium with Java, Playwright with TypeScript, Software Testing, and Automation Testing. My goal is to help students and working professionals build strong practical skills that can be applied directly in real-world software testing projects. I focus on bridging the gap between theoretical knowledge and industry requirements so that learners can confidently work in the field of automation testing.

I hold a Master of Computer Applications (M.C.A.) degree, which provided me with a strong technical foundation in software development and testing. In addition, I have completed several professional certifications that strengthen my expertise in the field. These include the Scrum Alliance Certified Scrum Master certification, the ISTQB Foundation Level certification in Software Testing, and the AWS Cloud Practitioner certification.

I have a total of 15 years of industry experience in Software Testing and Automation. During my professional career, I have worked extensively with tools and technologies such as Selenium, Playwright, and AWS. This real-world experience helps me provide practical insights and examples to students, making the learning process more relevant and industry-oriented.

Along with my industry experience, I have also been teaching and mentoring students for the past 10 years. During this time, I have guided many learners who wanted to enter the field of software testing or improve their automation skills. My focus has always been on building strong technical understanding and hands-on expertise.

My teaching approach is structured and practical-oriented. I prepare detailed lesson plans and conduct interactive sessions where students learn concepts step by step. I emphasize hands-on practice so that students can write test scripts, understand automation frameworks, and gain confidence in working with testing tools.

I also focus on explaining real project scenarios and best practices used in the software testing industry. This helps students understand how testing and automation work in professional environments and prepares them for real job roles in the field.

I conduct online classes and use PPT presentations to support my explanations. My goal is to ensure that every student gains practical knowledge, develops confidence in automation testing tools, and becomes well-prepared for opportunities in the software testing industry.

Languages Spoken

Telugu

English

Kannada Proficient

Education

Sri Krishnadevaraya University 2006

Bachelor of Computer Science (B.Sc. (Computer Science))

S.V University 2009

Master of Computer Applications (M.C.A.)

Scrum Alliance 2024

Scrum Master

ISTQB 2024

ISTQB Foundation Level Certificate in Software Testing

Address

Krishnarajapura Vidya Nagar, Bangalore, India - 560049

Verified Info

ID Verified

Phone Verified

Email Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Taught Students from these Schools

O

Orchids International School

C V Raman Nagar, Bangalore

M

MVJ College of Engineering

Whitefield, Bangalore

N

New Horizon Gurukul

Kadubeesanahalli, Bangalore

N

Narayana e techno school

Reddy Nagar Kakatiya Nagar, Narasaraopet

N

Narayana Jr College

Kammanahalli Sena Vihar, Bangalore

Teaches

Selenium Training

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Selenium Training

15

Subjects

Selenium with C#, Selenium, Selenium with Java, Selenium with Python

Teaching Experience in detail in Selenium Training

Core Java with complet OOPS,String,Arrays and Collections Framework. Selenium with all types of loacators,actions,WebTable(Grid). Automate the real secarios with full set of test cases. Teach autoamtion framework creation from scratch. BDD with cucumber. Create Git Repository to maintain the code. Create Jenkins Pipeline to run autoamtion code as per schedules. Full support on resume building and interview preparation.

Software Testing classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Software Testing classes

15

Training offered

Apache JMeter, Playwright , Cucumber

Mobile Automation Tools

Appium for Android & iOS, UIAutomator for Android

Training for ISTQB certification

No

Testing Types

Mobile Automated Software Testing, Automated Software Testing, Manual Software Testing

Teaching Experience in detail in Software Testing classes

QA Lead | 14+ Years Experience in Web, API & Performance Testing QA Lead with 14+ years of experience in Software Quality Assurance across Web, Mobile, Desktop, and API applications. Proven expertise in end-to-end quality initiatives within Agile and Scrum environments, ensuring high product reliability and faster release cycles. Strong hands-on experience in UI automation using Playwright with Java and TypeScript. Experience leveraging AI-driven testing approaches using Generative AI, GitHub Copilot, and RAG architectures to improve test creation, debugging, and optimization. Skilled in Python for building test utilities, data processing scripts, and AI-assisted testing integrations. Hands-on exposure to LLM-assisted test generation, intelligent debugging, and automated test optimization. Testing Expertise Web Application Testing Mobile Application Testing (Android / iOS) Native Application Testing Desktop Application Testing API Testing Browser & Cross-Browser Testing UI / Functional Testing

Computer Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Computer Classes

10

Type of Computer course taken

Software Programming, Basics of Computer usage, Training in Software application usage, Training in Computer tools usage

Automation Testing Training

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Automation Testing Training

15

Subjects

Playwright

Teaching Experience in detail in Automation Testing Training

Core Java with complet OOPS,String,Arrays and Collections Framework. Playwright with Java/Playwright with all types of loacators,actions,WebTable(Grid). Automate the real scenarios with full set of test cases. Teach automation framework creation from scratch. BDD with cucumber. Create Git Repository to maintain the code. Create Jenkins Pipeline to run automation code as per schedules. Full support on resume building and interview preparation.

Reviews

No Reviews yet!

Answers by Konda Reddy

Answered on 12 Mar Learn IT Courses/Mainframe

Ask a Question

Post a Lesson

For a beginner, the best mouth organ (harmonica) is usually a 10-hole diatonic harmonica in the key of C. It’s the easiest to learn from tutorials and works well for most beginner songs
Answers 2 Comments
Dislike Bookmark

Answered on 12 Mar Learn IT Courses/Mainframe

Ask a Question

Post a Lesson

you cannot directly automate Mainframe terminal screens using Selenium. Why? Selenium works only with web applications (HTML / DOM elements in a browser). Mainframe systems usually run in terminal emulators, not browsers. Typical mainframe interfaces: IBM 3270 / 5250 terminal screens Tools like: IBM... ...more

you cannot directly automate Mainframe terminal screens using Selenium. 

Why?

Selenium works only with web applications (HTML / DOM elements in a browser).
Mainframe systems usually run in terminal emulators, not browsers.

Typical mainframe interfaces:

  • IBM 3270 / 5250 terminal screens

  • Tools like:

    • IBM Personal Communications

    • Attachmate Reflection

    • Micro Focus Rumba

These screens are text-based terminal sessions, not HTML pages.
So Selenium cannot find elements like:

driver.findElement(By.id())
driver.findElement(By.xpath())

because there is no DOM.

Ways to Automate Mainframe Applications

1️⃣ Mainframe Automation APIs (Best way)

Many terminal emulators provide automation APIs / libraries.

Examples:

  • HLLAPI (High Level Language API)

  • EHLLAPI

You can automate using:

  • Java

  • C#

  • Python

Example flow:

Connect to session
Send keys
Read screen text
Validate data

2️⃣ RPA Tools

RPA tools support mainframe automation very well.

Common tools:

  • UiPath

  • Automation Anywhere

  • Blue Prism

They use screen scraping + terminal APIs.

Answers 3 Comments
Dislike Bookmark

Answered on 07/07/2021

Ask a Question

Post a Lesson

Learn Machine Learning/Complete the Data Science program from the IIIT program, and better get the certificate once done the course. It helps a lot.
Answers 83 Comments
Dislike Bookmark

Answered on 07/07/2021 +1 IT Courses/IT Automation

Ask a Question

Post a Lesson

Better learn Power BI from Microsoft, which has huge demand in the current IT market. Also, you can get data science from upgrade IIIT Bangalore. Once done with this course, you will get daily calls from all reputed companies.
Answers 57 Comments
Dislike Bookmark

Answered on 07/07/2021

Ask a Question

Post a Lesson

It will take 30 hours with full passion. Love yourself while dancing. Look at the mirror and observe the steps. Everybody has a unique personality and flexibility. If you practice daily for 2 to 3 hours, you will get the perfect dance in 30 hours.
Answers 114 Comments
Dislike Bookmark
x

Ask a Question

Please enter your Question

Please select a Tag

Teaches

Selenium Training

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Selenium Training

15

Subjects

Selenium with C#, Selenium, Selenium with Java, Selenium with Python

Teaching Experience in detail in Selenium Training

Core Java with complet OOPS,String,Arrays and Collections Framework. Selenium with all types of loacators,actions,WebTable(Grid). Automate the real secarios with full set of test cases. Teach autoamtion framework creation from scratch. BDD with cucumber. Create Git Repository to maintain the code. Create Jenkins Pipeline to run autoamtion code as per schedules. Full support on resume building and interview preparation.

Software Testing classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Software Testing classes

15

Training offered

Apache JMeter, Playwright , Cucumber

Mobile Automation Tools

Appium for Android & iOS, UIAutomator for Android

Training for ISTQB certification

No

Testing Types

Mobile Automated Software Testing, Automated Software Testing, Manual Software Testing

Teaching Experience in detail in Software Testing classes

QA Lead | 14+ Years Experience in Web, API & Performance Testing QA Lead with 14+ years of experience in Software Quality Assurance across Web, Mobile, Desktop, and API applications. Proven expertise in end-to-end quality initiatives within Agile and Scrum environments, ensuring high product reliability and faster release cycles. Strong hands-on experience in UI automation using Playwright with Java and TypeScript. Experience leveraging AI-driven testing approaches using Generative AI, GitHub Copilot, and RAG architectures to improve test creation, debugging, and optimization. Skilled in Python for building test utilities, data processing scripts, and AI-assisted testing integrations. Hands-on exposure to LLM-assisted test generation, intelligent debugging, and automated test optimization. Testing Expertise Web Application Testing Mobile Application Testing (Android / iOS) Native Application Testing Desktop Application Testing API Testing Browser & Cross-Browser Testing UI / Functional Testing

Computer Classes

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Computer Classes

10

Type of Computer course taken

Software Programming, Basics of Computer usage, Training in Software application usage, Training in Computer tools usage

Automation Testing Training

Class Location

Online class via Zoom

Student's Home

Tutor's Home

Years of Experience in Automation Testing Training

15

Subjects

Playwright

Teaching Experience in detail in Automation Testing Training

Core Java with complet OOPS,String,Arrays and Collections Framework. Playwright with Java/Playwright with all types of loacators,actions,WebTable(Grid). Automate the real scenarios with full set of test cases. Teach automation framework creation from scratch. BDD with cucumber. Create Git Repository to maintain the code. Create Jenkins Pipeline to run automation code as per schedules. Full support on resume building and interview preparation.

No Reviews yet!

Answers by Konda Reddy

Answered on 12 Mar Learn IT Courses/Mainframe

Ask a Question

Post a Lesson

For a beginner, the best mouth organ (harmonica) is usually a 10-hole diatonic harmonica in the key of C. It’s the easiest to learn from tutorials and works well for most beginner songs
Answers 2 Comments
Dislike Bookmark

Answered on 12 Mar Learn IT Courses/Mainframe

Ask a Question

Post a Lesson

you cannot directly automate Mainframe terminal screens using Selenium. Why? Selenium works only with web applications (HTML / DOM elements in a browser). Mainframe systems usually run in terminal emulators, not browsers. Typical mainframe interfaces: IBM 3270 / 5250 terminal screens Tools like: IBM... ...more

you cannot directly automate Mainframe terminal screens using Selenium. 

Why?

Selenium works only with web applications (HTML / DOM elements in a browser).
Mainframe systems usually run in terminal emulators, not browsers.

Typical mainframe interfaces:

  • IBM 3270 / 5250 terminal screens

  • Tools like:

    • IBM Personal Communications

    • Attachmate Reflection

    • Micro Focus Rumba

These screens are text-based terminal sessions, not HTML pages.
So Selenium cannot find elements like:

driver.findElement(By.id())
driver.findElement(By.xpath())

because there is no DOM.

Ways to Automate Mainframe Applications

1️⃣ Mainframe Automation APIs (Best way)

Many terminal emulators provide automation APIs / libraries.

Examples:

  • HLLAPI (High Level Language API)

  • EHLLAPI

You can automate using:

  • Java

  • C#

  • Python

Example flow:

Connect to session
Send keys
Read screen text
Validate data

2️⃣ RPA Tools

RPA tools support mainframe automation very well.

Common tools:

  • UiPath

  • Automation Anywhere

  • Blue Prism

They use screen scraping + terminal APIs.

Answers 3 Comments
Dislike Bookmark

Answered on 07/07/2021

Ask a Question

Post a Lesson

Learn Machine Learning/Complete the Data Science program from the IIIT program, and better get the certificate once done the course. It helps a lot.
Answers 83 Comments
Dislike Bookmark

Answered on 07/07/2021 +1 IT Courses/IT Automation

Ask a Question

Post a Lesson

Better learn Power BI from Microsoft, which has huge demand in the current IT market. Also, you can get data science from upgrade IIIT Bangalore. Once done with this course, you will get daily calls from all reputed companies.
Answers 57 Comments
Dislike Bookmark

Answered on 07/07/2021

Ask a Question

Post a Lesson

It will take 30 hours with full passion. Love yourself while dancing. Look at the mirror and observe the steps. Everybody has a unique personality and flexibility. If you practice daily for 2 to 3 hours, you will get the perfect dance in 30 hours.
Answers 114 Comments
Dislike Bookmark
x

Ask a Question

Please enter your Question

Please select a Tag

Contact

Load More
  • Want to learn from Konda Reddy?

  • Contact Now
X

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more