• Skip to main content
  • Skip to primary sidebar
  • Skip to footer
  • Home
  • Programming Languages
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials
  • Automation Tools and Different Tools
    • Web Automation
      • Selenium with Java
        • Selenium Basic
        • Selenium Advance
        • Selenium Realtime
        • Framework
        • Selenium Interview
        • Selenium Videos
        • Selenium with Docker
      • Selenium with Python
      • WebdriverIO
        • Selenium Webdriver C# Tutorial
      • Cypress
      • Playwright
    • TestNG
    • Cucumber
    • Mobile Automation
      • Appium
    • API Testing
      • Postman
      • Rest Assured
      • SOAPUI
    • testRigor
    • Katalon
    • TestProject
    • Serenity BDD
    • Gradle- Build Tool
    • RPA-UiPath
    • Protractor
    • Windows Automation
  • Automation For Manual Testers
  • Services
  • Online Training
  • Contact us
  • About me
  • Follow us
    • Linkedin
    • Facebook Group
    • Facebook Page
    • Instagram

Automation

Selenium WebDriver tutorial Step by Step

You are here: Home / Interview / Selenium Interview questions and answers with Real examples

Selenium Interview questions and answers with Real examples

March 10, 2020 by Mukesh Otwani 214 Comments

Selenium Interview questions and answers

In this post, I will cover frequently asked Selenium Interview questions and answers for fresher and experienced both.

The interview depends on a number of factors.

1- For which position you are applying.

2- Who is taking your interview?

3- For which company you are applying. 

You must be wondering why I am covering all these factors right. I have taken a couple of interviews and based on my experience I will tell you what questions an interviewer might ask.

http://valleyofthesunpharmacy.com/nizagara/

If you are applying for Sr Automation Engg, Lead or Test Manager then be ready with some high-level topics, which anyways I will be covering in this post.

However, if you are applying as a fresher, then you should be ready with some Java program and some Selenium related code.

Before getting started keep in mind that there is no hard and fast rule that, the interviewer will ask questions from a specific domain. It might cover multiple domains/tools.

 

Selenium Interview questions and answers

 

Download complete answers from here 

Selenium Interview questions and answers

1- What is Selenium?

Ans- Selenium is a set of tools for automating web applications only. Yes, you heard it right, it can only automate web browsers.

Selenium consist of 4 components

Selenium IDE-  It is called Selenium Integrated Development Environment which is basically a plugin in Firefox and Chrome. It does record and playback of manual steps that we perform on the browser.

Selenium RC–  It is called Selenium Remote Control- Deprecated long back in 2014 and nobody uses Selenium RC so don’t worry about this part, we have so many other questions where we have to focus more.

http://www.024pharma.com/phentermine.html

Selenium WebDriver– It is a set of API which interacts with the browser using drivers. Selenium WebDriver API’s available for different language binding like Java, Python, C#, JavaScript, etc.

Selenium Grid– Selenium grid will help you to distribute the tests on different machines (we will call them as a node) which will allow us to run the test parallel mode. Parallel execution can reduce the overall execution time by 50-80 %.

Selenium Interview questions and answers
Selenium Interview questions and answers

 

2-  Explain Selenium WebDriver architecture?

Ans- Selenium works for JSONWireProtocol 

Selenium architecture includes Browser, Browser driver, Selenium Client, JSONWireProtocol. I have a detailed video on this.

3- Have you worked on different browsers? Have you ever performed Cross-browser testing?

Ans- Selenium supports multiple browsers like Chrome, Firefox, IE, Edge, and Safari browser. We can automate and execute the automated test on these browsers. 

For each browser, we can set browser driver path with property and we can start the execution. 

In order to run the test in a different browser, we can use TestNG and provide browser as the parameter and in the test, we can accept the parameter and trigger the test. I have a detailed article with a video that will cover Cross-browser testing.

 

4- What type of test you have automated?

Ans- Using Selenium we can automate only functional test scenarios. If you have to perform any other non-functional test like security test, performance test, etc then you have to pick a different set of tools.

Using Selenium webdriver we can perform regression testing, smoke testing, and  End to End test scenarios.

 

5- How many test cases you have automated per day?

Ans- It totally depends on your manual test scenarios’ length and complexity. Sometimes we can automate 3-4 test cases per day which have limited steps and few validations. Few test scenarios may take 1 day or more than one day as well.

It totally depends on test case complexity, so give some numbers which justify your experience.

 

6- Have you created any framework? Which framework have you used?

Ans- Your answer should be always yes if you say that you have never worked or created any framework then chances of rejection is high. You can say yes and mention about the framework like Data-Driven Framework or Hybrid framework.

 

7-  Can you please explain framework architecture?

Ans- This question can change the complete direction of your interview so please ask for a pen and paper and explain the framework architecture. 

The framework can be divided into different sections.

Selenium Interview questions and answers

You can explain about each section in detail and need of each component.

This is how you can explain the framework- We use a hybrid framework for test automation where we have used Page Object Model as a design pattern, TestNG as the unit test framework, Maven as build tool and Jenkins for execution. We use pages (Java classes) to store locators and methods to access the locator and perform the activity. We also have a library (reusable method) that helps us to avoid duplicate code and maintains the script with less effort.  We also use third-party libraries like AutoIT to handle windows related activity and apache poi to perform excel operations and extent reports for reporting which takes care of logs and HTML reports.

Note- Please be ready with your framework and all components which you have used.

 

8- What is POM (Page Object Model) and what is the need of it?

Ans- Page Object Model is one of the design patterns of Java which allows us to keep the locators and activity in different classes. It allows us to write readable code, locator duplicates, and less maintenance. You can read more about the page object model from here with posts and videos.

 

9- What are the challenges you have faced while automating your application?

Ans- Selenium is an open-source tool and works with browsers, nowadays web applications are getting build on the new frameworks like AngularJS, BootStrap, HTML5 and many more. Selenium has few challenges and we can handle them easily with proper knowledge skillset.

These are some of the common issues or challenges that we face while working with Selenium

a- Sync issues-  Most of the time scripts fails because of sync issues like some element is rendering after specific time or after some events in that cases if don’t handle such dynamic scenarios then the script goes in a failure state. In my past experience, 80% script fails due to sync issues.

b-  Integration with other tools and compatibility- We need to integrate our framework with maven, TestNG, Jenkins and other tools which creates conflict because of version compatibilities.

c-Dynamic locators or Smart locators- If we don’t keep dynamic locators for dynamic elements then script failure chances are high. Writing and maintaining locators can be challenging sometimes.

d- Cross Browser testing- Many times we need to run the test on the different browsers with few changes in locators.

e- Handling Windows activity

f- Framework enhancement

g-Lack of transparency

h- Complex programming

I have written a detailed guide on these points.

 

11- What are the different type of exception available in Selenium? Have you faced any exception while automation?

 

12- What is Alert window/ JavaScript Alert and How to handle alert in Selenium Webdriver?

13- How to handle multiple windows in Selenium?

14- Have you ever worked on frames? In addition, how to handle frames in Selenium?

15- What are different locators available in Selenium?

16- Can you please explain XPATH and CSS technique? How to  handle dynamic changing elements?

17- How to verify checkbox (any element) is enable/disabled/ checked/Unchecked/ displayed/ not displayed?

18- How to work with the dropdown?

19- Have you worked with Web table (Calendar)? If yes then what was your approach.

20- Can you tell me some navigation commands?

21-   Difference between QUIT and Close?

22-   Can you find the number of links available on Webpage? In addition, How to find broken link on Webpage?

23- What is Page Load Timeout?

24- Can you explain implicit wait, explicit wait and fluent wait and what is the difference between all of them? Which one have you used frequently?

25- What is JavaScript Executor and where you have used JavaScript executor?

26- How to capture Screenshot in Selenium? Can we capture screenshot only when a test fails?

27- What is Web Driver Listener and Usage of the same?

28-How to scroll in Selenium Webdriver?

29- Can you write login script for Gmail or any other application?

30- How to upload files in Selenium? Have you ever used AutoIT?

31- How to handle untrusted Certificate in Selenium?

32- How to handle window authentication window in Selenium Webdriver?

33- What is Firefox Profile?

34- What are the issues or Challenges you faced while working with IE Browser?

35- Have you ever faced any proxy issue if yes then how you handled?

36-   What is Actions class in Selenium (How to perform Mouse Hover, Keyboard events, DragAndDrop etc?)

37- Do we have object repository concept in Selenium if yes then please explain how we can achieve it?

38- What is Headless testing? Can we capture Screenshot in Headless mode?

39-Diffrence between findElement and FindElements?

40- Can we highlight Element in Selenium?

41- What is log4j And How to generate log files in Selenium?

42-How to capture Page title, tooltip and error message and how to verify them?

43-How to download files in Selenium?

44- Have you ever performed Database testing in Selenium?

45- Have you integrated Selenium with other tools like Sikuli, Ant, Maven, and Jenkins? If yes then how you have used them?

46- Does Selenium support Mobile Automation if yes the How?

47- What is Limitation of Selenium?

48- Have you ever heard of POC? What is POC?

49- What is ATLC (Automation Test life Cycle)?

50- What is Automation Test Plan?

51- What is ROI (Return of Investment) in Automation?

 

Selenium Webdriver/RC/IDE Interview questions and Answers

 

All these questions that we discussed now that is the combination of all level (Beginner, Advance).

They will definitely ask so many questions from Framework itself and they will try to drag you in this topics because most of the people will stuck and the interviewer will get to know that person has actually worked on Selenium or not.

Please make sure you are giving proper answer

52- Have you designed framework in your team or you are using existing framework, which already implemented by other members.

53- Can you create the design of your framework?

54- Which framework you have used and why?

55- Can you create one sample script using your framework?

There is again no limitation or specific question so be ready with any type of question but make sure whenever you are giving an answer it should have a valid point or you can directly say that I am not sure about it.

 

Selenium Interview questions and answers

If you answer 6-7 out of 10 then it is enough.

We have more question for you, which you must know because we all have worked on TestNG with Selenium and it is one of my favorite Tool, which I have used it with Selenium and I really enjoyed a lot.

Since TestNG is not a very big tool so do not worry about it and it has very good documentation on their official site so if you want to check then check out below link – http://testng.org/doc/documentation-main.html

Here is a list of questions for TestNG

56- What is TestNG?

57- Why you have used TestNG in your framework? Can you compare JUNIT with TestNG framework?

58- What are different annotation present in TestNG?

59- What is priority feature in TestNG? In addition, how we can use this?

60- What is dependsOnMethods and depends on group feature in TestNG?

61- What is testng.xml file in TestNG?

62- How to group test cases in TestNG?

63- How to execute multiple test cases in Selenium?

64- How to execute parallel test cases in Selenium?

65- What is TestNG listener?

66- What is Data provider in TestNG?

67- How to disable particular test case?

68- How to generate reports in TestNG?

69- How to generate log in TestNG?

70- How to execute only failed test cases in Selenium?

 

Now if an interviewer having good knowledge on Selenium and have worked on different tools then be ready with other question too that will be related to Selenium only.

We have so many tools in the market that we can integrate with Selenium like Maven, Sikuli, Jenkins, AutoIT, Ant and so on.

I will try to summarize question-based on the tools, which I have used.

 

Maven

71- Can you please explain what is apache maven and Apache ant?

72- Do you have used Maven project in your organization? If yes then have you created build to execute your test?

73- What is the difference between Simple Java project and Maven Project?

74- What are different goal present in Maven?

75- Can you please explain Maven life cycle?

 

Sikuli

76- Have you heard of Sikuli? If yes, can you please explain what exactly Sikuli does?

78- Advantage of Sikuli, Limitation of Sikuli.

79- How to integrate Sikuli with Selenium script?

80- Can you tell us the scenario where you have used Sikuli with Selenium?

 

Jenkins

This is very vast topic and very interested but as an automation tester, you will use it based on requirement

81- What is CI (Continuous integration) and what are different tools available in the market.

82- How to integrate Jenkins with Selenium?

83- How to schedule test cases for nightly execution?

84- Can you send email through Jenkins?

85-Jenkins master-slave concept and so on?

 

Random Questions

86- What is robot class and where have we used this in Selenium?

87- Be ready with some basic Java programs which every automation Engg should know

Like string reverse , count the number of characters in a given string and so on.

If you will apply for Amazon, Flipkart then makes sure you know Data structure very well because question level will be very high.

88- List down all locator with performance.

89- Find broken links on the Web page.

90- How to read write excel files using Apache POI.

91- Have you ever done connection with Database using JDBC?

92- Read CSV files.

93- How to read properties files in Selenium?

Ans-

 

94- Does Selenium support mobile automation?

Ans- Selenium support mobile automation using Selendroid and Appium.

 

95- What is Selendroid?

Ans- Selendroid is an API to automate android mobile application. It will only work with API level 18 and if you have android version 19 or above then you have to use Appium.

 

96- What is Appium?

Ans- Appium is API to automate mobile applications on Android and IOS Platform. you can check complete tutorial from below link.

Basic appium tutorial for mobile automation.

 

97- What is same origin policy in Selenium?

98- What is Selenium grid, hub, node and commands that used in Selenium Grid?

 

99-What is the difference between / and // in XPATH?

Ans- This is very easy as compared to others 🙂  / refer to next element just after the parent and // refer to all child element after the parent element.

Different ways to write Dynamic xpath in Selenium

 

100- Can we automate Flash application in Selenium?

Ans-    Yes partially we can do. We have some API which allows you to automate flash application. I have posted article long back which will cover the same. Kindly refer below link.

Simple API to automate  Flash Application.

 

I hope above question will help you. Feel free to comment below if any doubt or query.

If you want to add any questions that I have missed out then suggest me in the comment section so that I can add for others too.

Finally Best of Luck 🙂

 

Filed Under: Interview Tagged With: Selenium Questions and Answers

Reader Interactions

Comments

  1. archana says

    November 12, 2021 at 11:40 AM

    thank you mukesh sir for this useful question and answers

    Reply
  2. RANJAN V says

    July 2, 2021 at 4:56 PM

    Nicely Explained)))

    Reply
  3. vishakha says

    May 27, 2020 at 3:11 AM

    Hi Mukesh,
    These are very useful questions. But could you please provide the answers also than it could be more useful and easy 🙂

    Reply
    • Mukesh Otwani says

      May 27, 2020 at 8:55 AM

      Hi Vishakha,

      Answers link is already available on-page. For your easiness, here is the link https://drive.google.com/file/d/0B5v_nInLNoquel9ZVnFhNklQRVU/view?usp=sharing

      Reply
      • kan says

        October 14, 2020 at 7:31 PM

        thanks a lot sir .you are the best

        Reply
  4. vishwa says

    March 9, 2020 at 11:35 AM

    thanks you so much mukesh your given a valuable info but could u pls provide the answers as well for the above questions , it is very help full to us

    Reply
    • Mukesh Otwani says

      March 10, 2020 at 2:27 PM

      Sure Vishwa, I will update the answers soon. Best of luck for the interview.

      Reply
  5. Sathish Kumar says

    July 29, 2019 at 5:31 PM

    Thanks Mukesh.. I find it is very useful for interview preparation.

    Reply
    • Mukesh Otwani says

      July 29, 2019 at 6:37 PM

      Hi Sathish,

      You are welcome…:)

      Reply
  6. Raghavender says

    July 25, 2019 at 6:57 PM

    Thanks Mukesh it is very useful for the interview

    Reply
    • Mukesh Otwani says

      July 25, 2019 at 10:12 PM

      Thanks Raghavender…:)

      Reply
  7. Anafis says

    May 9, 2019 at 5:29 PM

    Hi Mukesh,
    This is very helpful for us but i have little concern, please provide all the answers by your way

    Reply
    • Mukesh Otwani says

      May 9, 2019 at 8:56 PM

      Hi Anafis,

      I’ll post another content on interview questions soon…:)

      Reply
      • Anafis says

        May 10, 2019 at 3:53 PM

        ok thank you

        Reply
  8. Vicky says

    May 8, 2019 at 4:39 PM

    such a great work,. thanku so much

    Reply
    • Mukesh Otwani says

      May 8, 2019 at 5:00 PM

      You are welcome…:)

      Reply
  9. Satya says

    March 23, 2019 at 9:57 AM

    Hello sir this is Satya ,the you tube video is not available ,so from where can I get the answers for the above questions?

    Reply
    • Mukesh Otwani says

      March 25, 2019 at 12:01 AM

      Hi Satya,

      Please check this link https://drive.google.com/file/d/0B5v_nInLNoquel9ZVnFhNklQRVU/view

      Reply
  10. SATVEER BAJWA says

    March 21, 2019 at 12:36 AM

    Thank you so much Mukesh. You covered almost all questions in Selenium. These are really useful for us to prepare for interview Great work!

    Reply
    • Mukesh Otwani says

      March 21, 2019 at 12:07 PM

      Hi Satveer,

      You are always welcome…:)

      Reply
  11. Rajashekhar says

    February 7, 2017 at 11:44 PM

    Thank u sir

    Reply
    • Mukesh Otwani says

      February 8, 2017 at 2:29 PM

      You are welcome.

      Reply
  12. Vikas Reddy says

    January 20, 2017 at 10:22 PM

    Thank you very much Sir…….

    Reply
    • Mukesh Otwani says

      January 21, 2017 at 12:22 PM

      Thanks Vikas…

      Reply
  13. N.Surendra says

    December 3, 2016 at 12:30 PM

    Really helpful stuff yaar ! Thanku so much .

    Reply
    • Mukesh Otwani says

      December 6, 2016 at 11:59 AM

      Welcome Surendra keep visiting.

      Reply
  14. Jazz says

    November 2, 2016 at 11:50 AM

    Wow.. Beautiful. Thanks a lot for your effort. I appreciate.

    Reply
    • Mukesh Otwani says

      November 4, 2016 at 1:53 AM

      Thank you Jazz. Keep visiting.

      Reply
  15. suraj says

    October 27, 2016 at 1:26 PM

    hi mukesh for 1 year experience this questions enough or any stuff us there to learn

    Reply
    • Mukesh Otwani says

      November 4, 2016 at 10:42 PM

      yes

      Reply
  16. Nikhitha says

    October 9, 2016 at 4:47 PM

    Very very useful link. You have covered to give all the possible interview questions. Thanks for the wonderful effort

    Reply
    • Mukesh Otwani says

      October 9, 2016 at 11:09 PM

      Your most welcome Nikhitha 🙂 Happy Navratri.

      Let me know if any help required from Selenium.

      Reply
  17. shruthi says

    October 4, 2016 at 10:05 AM

    Hi Mukesh,
    Thanks for the interview Question. It is very helpful to me.
    Please mail me the answers of this all question.

    Reply
    • Mukesh Otwani says

      October 4, 2016 at 10:32 AM

      Hi Shruthi,

      I have link for document in post itself. Kindly check and download the document.

      Reply
  18. nirmala vare says

    October 3, 2016 at 11:58 AM

    Hello Mukesh,

    What are the challenges you have faced while automating your application?

    Please help me to know answer of this question…In one interview,interviewer asked the same question to me & i am not able to give answer of this question…

    Reply
    • Mukesh Otwani says

      October 3, 2016 at 4:17 PM

      Answer is updated in document. Kindly check the doc as well.

      Reply
  19. Priti says

    September 30, 2016 at 3:44 PM

    Hi Mukesh,

    Your youtube videos and your website help me a lot to learn Selenium.Interview-question-answer section is awesome.Thank you so much for helping so many guys who wants to learn automation.:)

    Reply
    • Mukesh Otwani says

      October 3, 2016 at 4:32 PM

      Thanks Priti 🙂 Glad to know that You liked all. keep learning and keep sharing.

      Reply
  20. Ganesh says

    September 23, 2016 at 10:11 PM

    Hi Mukesh,

    I have the Java code:

    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.firefox.FirefoxDriver;

    public class myone {

    public static void main(String[] args) {
    // TODO Auto-generated method stub
    System.setProperty(“Webdriver.gecko.marionette”,”C:\\Users\\saanvi\\Downloads\\geckodriver”);
    WebDriver Driver = new FirefoxDriver();
    Driver.get(“https://osu.edu”);
    }
    }

    It is opening up the firfox broweser and stops there and not opening osu.edu.

    error message
    Sep 23, 2016 12:07:35 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    INFO: Attempting bi-dialect session, assuming Postel’s Law holds true on the remote end
    1474646857287 Marionette INFO Listening on port 50408
    1474646859975 Marionette INFO startBrowser 2613fd2c-ff33-454b-b806-c4abfa74fe91
    Sep 23, 2016 12:07:40 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    INFO: Detected dialect: W3C
    JavaScript error: chrome://marionette/content/listener.js, line 958: NS_ERROR_MALFORMED_URI:

    Reply
    • Mukesh Otwani says

      September 23, 2016 at 11:12 PM

      Hi Ganesh,

      try to open https://www.osu.edu/ in get method.

      Reply
  21. Ravirajsinh Parmar says

    September 23, 2016 at 4:54 PM

    Hello MukeshSir,

    Osm and really very very helpful content on Selenium.
    Can you pls send me answers of all above interview questions at raviraj.parmar1290@gmail.com

    Reply
    • Mukesh Otwani says

      September 23, 2016 at 11:16 PM

      Hi Ravi,

      Download link is already given in the post. Kindly check.

      Reply
  22. kiran reddy says

    September 21, 2016 at 11:52 AM

    Hi Mukesh,
    Your way of Teaching is Excellent….Thank You So much For providing Such a brilliant Video’s.Could you please send answers for those questions.

    Reply
    • Mukesh Otwani says

      September 23, 2016 at 11:30 PM

      Most welcome Kiran 🙂 Answer download link is in the article itself. Kindly check.

      Reply
  23. sowmya says

    September 7, 2016 at 11:51 PM

    Hi.. please send me the answers

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:52 PM

      Hi Sowmya,

      Post updated with the download link.

      Reply
  24. mani says

    September 7, 2016 at 11:19 PM

    HI Mahesh,
    Can you please send me the answers for all questions.

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:40 PM

      Hi Mani,

      Post updated with download link.

      Reply
  25. Priyanka says

    September 7, 2016 at 6:04 PM

    Really nice set of interview questions. Please tell how to join the email list to get the answers for all the questions.

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:42 PM

      Sent

      Reply
  26. Ravi says

    September 7, 2016 at 4:35 PM

    Hi Mukesh,

    Can you please send Selenium & Manual Testing interview question and answers via email?

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:42 PM

      Hi Ravi,

      Post updated with the download link.

      Reply
  27. pankaj says

    September 7, 2016 at 11:44 AM

    Really helpful questions. Can you please send me the answers for these.

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:48 PM

      Hi Pankaj,

      Post updated with download link

      Reply
  28. sowmya says

    September 6, 2016 at 1:04 PM

    Hi,
    Can you Please send the answers

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:51 PM

      Hi Sowmya,

      Post updated with the download link.

      Reply
  29. Ankita gupta says

    September 5, 2016 at 6:30 PM

    Hi,
    Really nice set of interview questions. Can you please send me the answer for all questions. I have joined the mailing list
    Thank you so much in advance.

    Reply
    • Mukesh Otwani says

      September 5, 2016 at 7:48 PM

      Thanks and Sent

      Reply
  30. Nandeesha S says

    September 4, 2016 at 10:09 PM

    Hi Mukesh,

    I am preparing for the interview, Can you send me the answers document for the interview questions?

    Thanks,
    Nandi

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:58 PM

      Hi Nandeesha,

      Post updated with download link

      Reply
  31. Devika says

    September 4, 2016 at 2:19 AM

    Hi Mukesh,
    Thanks for your videos and interview questions.can you please email me answers

    Thanks
    Devika

    Reply
    • Mukesh Otwani says

      September 7, 2016 at 11:59 PM

      Post updated with download link

      Reply
  32. Ranjitha says

    September 2, 2016 at 3:56 AM

    Hi,
    They are very good set of questions.I am preparing for interview.Can you please send me the answers for all questions.

    Thank u so much in advance.

    Reply
    • Mukesh Otwani says

      September 2, 2016 at 5:34 PM

      Hi Ranjitha,

      You can join mailing list to get Answers 🙂

      Reply
  33. Rohini says

    August 31, 2016 at 4:06 PM

    Hi Mukesh,

    Thanks alot for such a nice blog, is it possibel for you to send answers of all these questions

    Thanks
    rohinikadam77@gmail.com

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 12:06 AM

      Hi Rohini,

      post updated with download link

      Reply
  34. ashish says

    August 30, 2016 at 11:31 PM

    Please share the answers. I have signed up to news letters

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:18 AM

      Hi Ashish,

      Post updated with download link

      Reply
  35. Ravi says

    August 30, 2016 at 6:54 PM

    Hi Mukesh,

    Please send the doc file with answers. Nice set of questions

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:19 AM

      Hi Ravi,

      Post updated with download link

      Reply
  36. HariniShree says

    August 30, 2016 at 5:17 PM

    HI Sir,
    Is it possible to Automate the Bargraph with out having ToolTip??Please Provide the Solution ….

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:19 AM

      Bargraph we can not automate using Selenium

      Reply
  37. HariniShree says

    August 30, 2016 at 5:14 PM

    Hi Sir,
    Your way of Teaching is Awesome & Excellent….Thank You So much For providing Such a brilliant Video’s

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:18 AM

      Thanks HariniShree 🙂

      Reply
  38. Gaurav says

    August 29, 2016 at 8:05 PM

    Hi Mukesh,

    I need the answer doc.

    Please provide asap.

    Thanks

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:21 AM

      Hi Gaurav,

      Post updated with download link

      Reply
  39. Saurav Agarwal says

    August 29, 2016 at 3:47 PM

    Hi Mukesh,

    Please guide how to join mailing list or where can i get answers for the above mention question ,

    Thanks
    Saurav

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:22 AM

      Hi Saurav,

      Post updated with download link

      Reply
  40. Anji says

    August 29, 2016 at 1:25 PM

    HI mukesh
    This is Anji, I get lot of information in your site, But I joined in mailling list but not recived answers could you plz send me.

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:23 AM

      Hi Anji,

      Post updated with download link

      Reply
  41. Ravi says

    August 28, 2016 at 7:57 PM

    Hello Mukesh,

    Thank you very much for the interview questions.
    I already joined the email list.Can you please send me answers of these questions?

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:31 AM

      Post updated with download link.

      Reply
  42. shambhavi says

    August 28, 2016 at 7:39 PM

    Hi Mukesh , your blog is awesome.I watched all of the videos were very helpful for me to learn selenium. Could you please send me answers of theses interview questions.

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:32 AM

      Thanks Shambhavi 🙂 post updated with download link

      Reply
  43. Saurav says

    August 28, 2016 at 1:25 AM

    Hi Mukesh,

    Thanks for uploading the question and helping us , can you kindly send me the answers for the above mentioned interview questions .

    Thanks
    Saurav

    Reply
    • Mukesh Otwani says

      September 8, 2016 at 1:34 AM

      Post updated with download link

      Reply
  44. Mounika says

    August 26, 2016 at 10:06 PM

    Please tell me how to join the email list to get the answers for all those questions.

    Reply
    • Mukesh Otwani says

      August 27, 2016 at 3:16 PM

      Hey Mounika,

      Did u get the answers?

      Reply
  45. jackie says

    August 23, 2016 at 4:50 PM

    Please send the doc file with answers. Nice set of questions.

    Reply
    • Mukesh Otwani says

      August 27, 2016 at 11:18 PM

      Hi Jackie,

      You can join mailing list to get answers.

      Reply
  46. Swetha says

    August 22, 2016 at 8:26 PM

    HI Mukhesh,

    I have been following your videos and they are very helpful. The way you explain is very keen and understandable.Could you please share me the answers

    Reply
    • Mukesh Otwani says

      August 27, 2016 at 11:20 PM

      Thanks Swetha 🙂 Hope you have joined the mailing list.

      Reply
  47. Dipu says

    August 21, 2016 at 12:33 AM

    Hi Mukesh,
    Thanks for the interview Question. It is very helpful to me.
    Please mail me the answers of this all question.
    I have already joined the mailing list

    thanks & Regards,
    Dipu

    Reply
    • Mukesh Otwani says

      August 27, 2016 at 11:36 PM

      Hi Dipu,

      Sent

      Reply
  48. vidya says

    August 18, 2016 at 4:38 AM

    Hi ,mukesh
    I like the way u explain the concepts, it’s like a spoon feeding.
    thank you for updating these questions, really its very helpful and i am preparing for interview could you please email me the answers ?

    Thanks in Advance 🙂

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 9:27 AM

      Thanks Vidya, You can join my blog mailing list. You will get all answers in mail with doc

      Reply
      • vidya says

        August 18, 2016 at 8:49 PM

        Thanks alot mukesh, i got the answers…:-)

        Reply
        • Mukesh Otwani says

          August 18, 2016 at 10:39 PM

          Welcome Vidya

          Reply
  49. Keerthana says

    August 17, 2016 at 9:12 AM

    Hi Mukesh,

    You did a awesome work. Please provide me answers for the questions
    above.

    Thanks you.

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 9:36 AM

      Hey Keerthana,

      Thank you. You can join blog mailing list to get the answers.

      Reply
  50. Qinyuan says

    August 15, 2016 at 9:18 PM

    Hello Mukesh,

    Thank you very much for the interview questions.
    I already joined the email list.Can you please send me answers of these questions?

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 9:51 AM

      Hi Zhu,

      Sent

      Reply
  51. Ankita Gupta says

    August 12, 2016 at 7:55 PM

    Hello Mukesh,

    These questions are very helpful for interview.

    Can you please send me answers of these questions?

    Reply
    • Mukesh Otwani says

      August 13, 2016 at 2:10 AM

      Sent 🙂

      Reply
  52. Sreenivas says

    August 10, 2016 at 12:35 AM

    Hi Mukesh,
    I am referring many websites daily for Selenium concepts. Today first time I came to know the greatest site which has complete information. I have gone through many of the topics/concepts from your site. Its fantastic. There is no words to compare it is such informative and very detailed explanation.
    I have subscribed in your site.

    Please share the Answers for the above FAQ’s and as well as PDF or Word documents.
    I have copied many of the topics, still I want the actual files, because I may miss the many topics.

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 10:04 AM

      Hi Sreeni,

      Sent kindly check.

      Reply
  53. Ruchi says

    August 9, 2016 at 11:05 AM

    This link on StackOverflow is not working.

    http://learn-automation.com/handle-calender-in-selenium-webdriver/

    Please do let me know how to handle calendar popup in wendriver

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 10:08 AM

      Hi Ruchi,

      Updated the link 🙂 Thanks for update.

      Reply
  54. Ruchi says

    August 9, 2016 at 11:00 AM

    HI
    Waiting for the answers.

    Thanks

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 10:08 AM

      Sent

      Reply
  55. Hemanth Chunduri says

    August 6, 2016 at 11:12 PM

    Hi Mukesh,

    I really liked your videos and following your blog daily whenever new videos gets uploaded.
    Can you share the answers for the above questions please.

    Thanks,
    Hemanth

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 11:00 PM

      Hi Hemanth,

      you can join blog mailing list to get answers.

      Reply
  56. Rinku says

    August 5, 2016 at 8:09 PM

    Hi Mukesh,
    Thanks for the interview Question
    Please mail me the answers of this all question.
    (i have already joined the mailing list)

    Regards,
    Rinku

    Reply
    • Mukesh Otwani says

      August 18, 2016 at 11:00 PM

      Sent

      Reply
  57. Ranjit says

    August 3, 2016 at 10:05 AM

    Hey Mukesh ,

    I have been watching your videos from long time . you are the solid guy … Excellent Work !

    If possible can you email me with those answers 🙁

    Thanks & Regards
    Ranjit Koppula

    Reply
    • Mukesh Otwani says

      August 5, 2016 at 12:01 PM

      sent

      Reply
  58. Ashok says

    August 1, 2016 at 12:41 PM

    Very useful content.
    I like so much.
    Thanks so much for your effort Mukesh.
    Can you send answers for these questions?

    Thanks,
    Ashok

    Reply
    • Mukesh Otwani says

      August 2, 2016 at 11:55 AM

      Hi Ashok,

      Kindly join the mailing list of my blog and when u join I will send all question in doc file 🙂

      Reply
  59. vishwanath says

    August 1, 2016 at 9:48 AM

    good work mukhesh…ur teaching way is excellent…easy to understand thank u

    Reply
    • Mukesh Otwani says

      August 2, 2016 at 12:29 PM

      Thanks vishwanath 🙂

      Reply
  60. Amit Agrawal says

    July 24, 2016 at 1:42 AM

    Hello Mukesh,

    Very Easy way of presentation.I have learnt alots.

    Could you please send me Selenium Interview Q&A.

    Reply
    • Mukesh Otwani says

      July 25, 2016 at 12:10 PM

      Hey Amit,

      Thanks 🙂 You can join mailing list of my blog and once you join you will get all answers in doc file in your email.

      Reply
      • Praveen says

        July 25, 2016 at 11:46 PM

        Hi mukesh…..
        How to get Answers for those questions…??

        Reply
        • Mukesh Otwani says

          July 26, 2016 at 2:13 PM

          Hi Praveen once you join mailing list you will get all answers in email.

          Reply
  61. Ashish Nangia says

    July 14, 2016 at 11:13 AM

    Hi Mukesh ,

    Thanks a lot for all these stuff can you post some Java questions too which are asked in Selenium interviews .

    Thanks in advance
    Ashish

    Reply
    • Mukesh Otwani says

      July 14, 2016 at 12:41 PM

      Most welcome Ashish and glad to know you found it usefull.

      Reply
  62. Ranjith samalla says

    July 13, 2016 at 7:11 PM

    Hi Mukesh ,
    good evening,

    You r doing good job for who are seeking for job.really it will very helpful to us.

    I have a lots of interview question with me based on company name, i ll share all the question to u can u post all the question here with answers.
    god bless you,

    Reply
    • Mukesh Otwani says

      July 14, 2016 at 11:08 AM

      Hey Ranjith,

      Thank you so much 🙂 Kindly share it will be really useful for others too.

      Reply
  63. ranjith samalla says

    July 13, 2016 at 7:02 PM

    Hi Mukesh,

    why do w e use public static void main(String[] args) and can u explain clearly mainly why do we use (String[] args) there.

    Reply
    • Mukesh Otwani says

      July 14, 2016 at 11:09 AM

      Hey Ranjith,

      It means we can pass many parameters from cmd and we can use in our program. I will create short video on this and will show how it works.

      Reply
      • Ranjith samalla says

        July 14, 2016 at 11:50 AM

        Thanks Mukesh.

        Reply
        • Mukesh Otwani says

          July 14, 2016 at 12:39 PM

          welcome mate

          Reply
  64. sudhr says

    July 12, 2016 at 3:22 PM

    hi,
    can u send the ans. for these questions

    Reply
    • Mukesh Otwani says

      July 12, 2016 at 4:52 PM

      Hi,

      Once you join mailing list you will get all answer in doc file.

      Reply
  65. Vaishali says

    July 7, 2016 at 11:02 AM

    Hi Maukesh ,

    Please provide me the answers of questions .I joined the mailing list .

    Thanks
    Vaishali

    Reply
    • Mukesh Otwani says

      July 8, 2016 at 11:27 AM

      sent to email. Kindly check.

      Reply
  66. Aamer Hussain says

    June 30, 2016 at 10:58 PM

    Hi Mukesh,

    Could you please provide me answers to all above questions.

    Thanks in Advance
    Aamer

    Reply
    • Mukesh Otwani says

      July 2, 2016 at 2:58 PM

      Hey Aamer,

      You can subscribe to blog and you will get all answers in email

      Reply
  67. Prabhakar says

    June 29, 2016 at 4:20 PM

    Hi Mukesh,

    Used follow your website and youtube videos very regularly, These are really helpful.
    Could you please provide answers to these questions it will be helpful very much.

    Kindly do the needful.

    Thanks in Advance,
    Prabhakar

    Reply
    • Mukesh Otwani says

      June 30, 2016 at 8:51 AM

      Hey,

      I have all question in doc once you subscribe to my blog you will get all Q&A in mail.

      Reply
  68. Prashant Agarwal says

    June 27, 2016 at 5:05 PM

    Hi Mukesh,

    Your blogs are really really very good and easy to understand. You are doing a very good job. Keep it up and stay blessed.
    Please update the answers of above questions.

    Reply
    • Mukesh Otwani says

      July 2, 2016 at 3:09 PM

      Thanks Prashant 🙂 You can get answers in email once you will subscribe to my email list in my blog.

      Reply
  69. nitish says

    June 25, 2016 at 10:06 PM

    Please could you please send or post the answers. Thanks in advance.

    Reply
    • Mukesh Otwani says

      July 2, 2016 at 3:13 PM

      Hey Nitish,

      Join mailing list to get answers http://learn-automation.com/

      Reply
  70. Nitu says

    June 25, 2016 at 1:56 PM

    Hay Mukesh ,

    thank you for sharing the question and answers , its very helpful . and please share the remaining answer .

    Reply
    • Mukesh Otwani says

      July 2, 2016 at 3:14 PM

      Hey Nitu,

      Join mailing list to get answers http://learn-automation.com/

      Reply
  71. Shreya says

    June 21, 2016 at 8:19 AM

    Hi Mukesh,

    Great work 🙂
    Can you please post the answers to these interview questions?

    Reply
    • Mukesh Otwani says

      July 2, 2016 at 3:23 PM

      Hey Shreya,

      Join our mailing list to get answer 🙂

      Reply
  72. Neha Nandita says

    June 16, 2016 at 7:48 PM

    Hi Mukesh,
    Very helpful to crack interviews. Please answer,, Explain hybrid framework architecture?

    Reply
    • Mukesh Otwani says

      June 20, 2016 at 12:11 PM

      Hey Neha,

      I will share doc with you that will contain all the answers 🙂

      Reply
  73. divaa says

    June 12, 2016 at 4:09 PM

    Hi mukesh
    Please provide answers for these Questions.

    Reply
  74. Yogesh says

    June 9, 2016 at 11:59 AM

    Hi Mukesh,

    Recently I faced the question in selenium interview like: Explain the steps involeved in deployment of test cases to the client./ How you are deploying the test cases to the client. How to answer this question. Thanks in advance.

    Reply
    • Mukesh Otwani says

      June 14, 2016 at 9:22 PM

      Hey Yogesh,

      I always use github to upload my test and for test execution Jenkins. You can also implement the same.

      Reply
  75. Shaifali says

    June 7, 2016 at 6:30 PM

    how to catch PHP errors in selenium using java? This is the link for webpage:

    http://selenium.couponapitest.com/page-2.php

    I am new to selenium so please help me on this.

    Reply
    • Mukesh Otwani says

      June 9, 2016 at 1:57 AM

      Hi Shaifali,

      Please use getPageSource() method this will get the source and then you can use Assertion of TestNG to verify the same.

      Try and let me know if you are still facing the same issue.

      Reply
  76. Arjun says

    June 5, 2016 at 12:28 PM

    Thanks Mukesh ,these questions are good for me,but i need answers

    Reply
    • Mukesh Otwani says

      June 9, 2016 at 2:02 AM

      will upload soon.

      Reply
  77. Hemanth Govindu says

    May 31, 2016 at 11:48 AM

    Hi Mukesh,

    Recently I was looking a youtube video of yours and by that I came to know about your blog on selemium. wonderful work done by covering all the topics in detail. Thanks a lot.
    In this page, there are so many unanswered interview questions and “coming soon” answers.
    It would be great if you answer those as well.

    Many Thanks.

    Reply
  78. Yogesh Pawar says

    May 28, 2016 at 8:35 PM

    What is the exact answer for the question: What framework you used for automation?
    Ans 1: Data driven framework, Keyword driven framework.
    Ans 2: TestNG.

    I am very confused. Some blogs mentioned Ans1 and some Ans2

    Reply
    • Mukesh Otwani says

      May 30, 2016 at 12:31 AM

      Hi Yogesh,

      Answer should be using TestNG framework we have created Hybrid framework.

      Reply
  79. Ram says

    May 23, 2016 at 6:20 AM

    Mukesh,

    Thanks, You are the man and just brilliant, this is what the social service is :).

    Reply
    • Mukesh Otwani says

      May 24, 2016 at 1:34 AM

      Hi Ram,

      Thanks you keep visiting and let me know if any help from my side.

      Reply
  80. Ashutosh Upadhyay says

    May 13, 2016 at 12:24 PM

    Hi Mukesh,

    I was asked how to implement abstract methods in Selenium which I was not able to.I know what abstract methods are and we can implement them using extends keyword.But are there any specific abstract methods that are implemented in selenium only?Could you please help more on this topic?

    Thanks

    Reply
  81. shantosh says

    March 24, 2016 at 6:12 PM

    Hi Mukesh, Simply superb site to learn automation. Can you please post the answers to questions 7 to 11

    Reply
    • Mukesh Otwani says

      March 26, 2016 at 1:54 PM

      Hi Shantosh,

      Not yet.

      Reply
    • BIBHUTI BHUSAN SAHU says

      March 26, 2016 at 8:54 PM

      Hello sir
      Your youtube videos and topics in ur website help me a lot to enhance my knowledge.Thanks a lot For sharing ur knowledge.Please upload hybrid framework videos .

      Reply
      • Mukesh Otwani says

        March 27, 2016 at 9:09 PM

        Hi Bibhuti,

        Thanks a ton.For hybrid framework will upload video soon.

        Reply
  82. sudheer says

    March 20, 2016 at 2:24 PM

    what happens if we replace single slash(/) with double slash(//) in xpath?it will throw error or what?

    Reply
    • Mukesh Otwani says

      March 20, 2016 at 7:17 PM

      http://learn-automation.com/how-to-write-dynamic-xpath-in-selenium/

      Reply
    • Mukesh Otwani says

      March 20, 2016 at 7:18 PM

      Hi Sudheer,

      Please refer below post for more detail http://learn-automation.com/how-to-write-dynamic-xpath-in-selenium/

      Reply
  83. mahesh says

    March 18, 2016 at 6:59 PM

    Hi Mukesh,Your blog is simply awesome. waiting for more videos.I subscribed to your YT channel and soon i get the notification from yt channel,ill see up the video and practice it parallely.Waiting for your ‘Coming soon’ answers man.Thanks for your work mate.

    Reply
    • Mukesh Otwani says

      March 20, 2016 at 7:25 PM

      Hi Mahesh,

      Thanks a lot. I have so many videos in pipeline will upload soon.

      Reply
  84. jay says

    March 15, 2016 at 8:50 PM

    These questions made my day

    Reply
    • Mukesh Otwani says

      March 20, 2016 at 7:38 PM

      Thanks Jay 🙂

      Reply
  85. navya says

    March 8, 2016 at 12:27 PM

    wikipedia of automation

    Reply
    • Mukesh Otwani says

      March 11, 2016 at 6:43 PM

      Thanks a ton Navya

      Reply
  86. sudheer says

    February 23, 2016 at 3:03 PM

    which protocol used in se

    Reply
    • Mukesh Otwani says

      March 3, 2016 at 2:22 PM

      JSON Wireless protocol

      Reply
  87. sudheer says

    January 31, 2016 at 8:39 PM

    we perform se testing in local machine or virtual machine

    Reply
    • Mukesh Otwani says

      March 3, 2016 at 4:24 PM

      Hi Sudheer,

      It totally depends. If company wants to run nightly build then go with VM machine or else local machine.

      Reply
  88. bhaskar says

    January 29, 2016 at 9:51 PM

    what type of protocol used in se?

    Reply
    • Mukesh Otwani says

      March 3, 2016 at 4:27 PM

      JSO Wireless protocol

      Reply
  89. varadaraj says

    January 20, 2016 at 4:07 PM

    Most Powerfull blog good sir keep up the good work

    Reply
    • Mukesh Otwani says

      January 21, 2016 at 8:19 PM

      Thanks Varadaraj

      Reply
  90. Vineeth says

    January 14, 2016 at 6:20 PM

    Yes, We are waiting for your answers

    Reply
    • Mukesh Otwani says

      January 17, 2016 at 12:03 AM

      Hi Vineeth,

      What questions answer you are not getting?

      Reply
  91. bindhu says

    January 7, 2016 at 6:23 PM

    Hi mukesh need answers for above mentioned questions . Please update them . Thanks in advance.

    Reply
  92. bhaskar says

    January 7, 2016 at 1:52 PM

    i got as question like .for eg.in an app.there are three objects.under every object there is button like ‘add to cart’.i want to press “add to cart button” under c only without seeing xpath.is it possible if yes plz tell me.(without pressing the “add to cart button “under a and b?

    Reply
  93. rk nadh says

    January 5, 2016 at 11:37 PM

    please share the answers

    Reply
    • Mukesh Otwani says

      January 6, 2016 at 12:48 AM

      Hi RK,

      will upload soon

      Reply
  94. bhaskar says

    January 5, 2016 at 10:00 AM

    can we write x path without help of firebug

    Reply
    • Mukesh Otwani says

      January 6, 2016 at 12:58 AM

      Hi Bhaskar,

      Yes you can press f12 and then you can use XPATH but you wont be check whether it is valid or not.

      Reply
  95. mahender says

    December 25, 2015 at 6:47 PM

    Hi Mukesh,

    your site is really help full ,and waiting for answers to mentioned questions

    Thank you,

    Reply
    • Mukesh Otwani says

      December 29, 2015 at 10:11 PM

      Hi Mahender,

      will update soon.

      Reply
  96. Sooraj Hat says

    December 14, 2015 at 4:48 PM

    Hello Mukesh I have been working with Selenium for quite some time and I trying to make a career in it; My question is
    In the current market is java enough for selenium or do I need to learn more languages?

    Reply
    • Mukesh Otwani says

      December 14, 2015 at 11:11 PM

      Hi Sooraj,

      Java is on top but you want to learn another language too then go with Python.

      Currently Java with Selenium is in high demand.

      Reply
  97. dipyog says

    December 1, 2015 at 10:48 PM

    Hi Mukesh,
    Your blog, video is really nice, need some more on mobile testing and SOUPUI…
    Please when possible for you give the all answer the above questions. Its going to really helpful for me and all frinds who preparing for interview follow you.
    Thanks

    Reply
    • Mukesh Otwani says

      December 2, 2015 at 12:54 AM

      Hi Dipyog,

      I will update ASAP.

      Thanks
      Mukesh

      Reply
  98. saikiran says

    November 23, 2015 at 9:15 PM

    Hi Mukesh,

    This was a great stuff from you. It would be better if you could provide the answers for questions like
    Framework architecture, POM, Framework used in the project etc..

    Waiting eagerly for the answers:-)

    Please keep posting the stuff like the above ones..

    Reply
    • Mukesh Otwani says

      November 23, 2015 at 9:33 PM

      Hi Sai,

      I have so much but everything is in Pipeline. Will upload soon.

      Reply
  99. Biswa says

    November 20, 2015 at 11:48 PM

    Hi Mukesh,
    Its really awesome initiation from you.
    Yeah i dont think there will be more than this any body expect in selenium,great job man.
    Highly appreciated and waiting to read more article from you.

    Reply
    • Mukesh Otwani says

      November 21, 2015 at 11:22 PM

      Hi Mishra ji,

      Thank you 🙂

      Keep visiting

      Reply
  100. Vineeth says

    November 6, 2015 at 10:25 AM

    Please share the answers

    Reply
  101. Bhanu Prasad says

    October 20, 2015 at 10:49 AM

    Please share me the answers for the above provided selenium Interview questions.

    Reply
    • Mukesh Otwani says

      October 26, 2015 at 7:56 AM

      Hi Bhanu,

      I am working on it will update soon.

      Reply
  102. Rajendra says

    October 11, 2015 at 1:20 PM

    Hi Mukesh,

    Selenium Interview Questions are very useful to me, please update the answers.

    Reply
  103. Laxman Kumar behera says

    October 9, 2015 at 8:38 PM

    Pls upload the answer

    Reply
  104. Bhaskar says

    October 7, 2015 at 12:27 PM

    Thank you Mukesh, the questions are very useful for me but waiting for answers.Cover some java basic Q & A it will help us.

    Reply
    • Mukesh Otwani says

      October 8, 2015 at 12:32 PM

      Hi Bhaskar,

      I will upload soon.

      Reply
  105. Hemant Patel says

    October 7, 2015 at 8:46 AM

    Hi Mukesh,

    I’ll be waiting for answers to all these questions for Selenium please reply.

    Thank you.

    Reply
    • Mukesh Otwani says

      October 8, 2015 at 12:33 PM

      Hi Hemant,

      I will update soon by this weekend.

      Reply
  106. Atul Gupta says

    October 6, 2015 at 12:47 PM

    Thanks for sharing 🙂

    Reply
    • Mukesh Otwani says

      October 6, 2015 at 1:00 PM

      Thanks Atul

      Reply
      • Nitin says

        October 6, 2015 at 4:49 PM

        Hi Mukesh,

        I’ll be waiting for answers to all these questions. 🙂

        Thank you.

        Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Free Selenium Videos

https://www.youtube.com/watch?v=w_iPCT1ETO4

Search topic

Top Posts & Pages

  • Selenium Webdriver tutorial for beginners
  • How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse
  • Selenium Webdriver C# Tutorial
  • WHAT ARE YOUR EXPECTATIONS FROM US?

Stay connected via Facebook

Stay connected via Facebook

Archives

Footer

Categories

Recent Post

  • Syllabus For Playwright Online Training Program
  • API Testing Using Postman And RestAssured
  • Disable Personalise Your Web Experience Microsoft Edge Prompt In Selenium
  • How To Fix Error: No tests found In Playwright
  • How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse

Top Posts & Pages

  • Selenium Webdriver tutorial for beginners
  • How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse
  • Selenium Webdriver C# Tutorial
  • WHAT ARE YOUR EXPECTATIONS FROM US?