Thanks a lot for the video!! I have an interview coming up and I've never done any testing automation. I do have knowledge of Java dev in Eclipse and JavaScript dev.
@@SoftwareTestingMaterial Thank you! I'm about to enroll a Software Engineering program in a bootcamp with the intent of being accepted for roles in Web Development, since that for junior lv jobs people with little experience don't get a chance of being hired. Now, I got recently contacted about an opportunity of becoming a Junior Web tester (Selenium + SOAPUI + perfecto). Is this role aligned with my goals? Would companies hire people without experience using these frameworks? OR should I go through the Bootcamp and expect to easily find a job in Web Dev afterwards?
How long Selenium will be in demand in the market? what is your personal view on this? Along with Selenium other associated areas like TestNG, Jenkins, Appium, Cucumber etc. will also be relevant for testers in the coming years?
I like you're videos i understand but how to draw TestNG framework and cucumber framework interview questions given paper draw you're framework architecture
Hi, In your blog page there is different project structure. In this, you put your pages inside src/main/resources but in blog it is inside src/main/java , which one should we follow ?
Hi Srinivas, It's purely our choice of maintaining a repository. You could keep all your locators in a property file and call those. If any changes in the locators you could open the property file and modify there. Also, you could use Page Object Model. Maintenance wise Page Object Model will be good as per my experience.
please help me to solve this scenirio___😥kisi ko pata ho plz bataye . Please share a Github Repository URL containing the source code of the questions below: 1. Use any test framework to write the test, BDD preferred. 2. Create descriptive names 3. Comment and document 4. Check for errors, and respond to them 5. Split your code into short, focused units 6. Scripting can be done in Java or Python using Selenium If you have any custom instructions on how to run the assignment, please add them to a README file in your repository Question: 1. Your Business Analyst has asked to write an automation script which can search for iPhones having a maximum price of INR 40,000 on Flipkart website. 2. The automation script should be capable of retrieving the device model with storage capacity and customer ratings. 3. The information retrieved should be saved in a CSV file where data is sorted by Price in ascending order. Example of how data should be stored in CSV file: Device Details, Price, Ratings Apple iPhone 6s (Gold, 32 GB), ₹24,799, 92,297 Apple iPhone 7 (Silver, 32 GB), ₹29,499, 92,023 Apple iPhone 7 (Black, 32 GB), ₹29,499, 92,023
*Selenium Interview Questions And Answers For Freshers And Experienced*
th-cam.com/video/dW0i6Qx4Thc/w-d-xo.html
Very super for selenium tutorials
Thanks
Now i got some idea how to explain my automation testing framework,Thank you
Im glad it helped you.
Same here
Thanks
Thanks a lot for the video!! I have an interview coming up and I've never done any testing automation. I do have knowledge of Java dev in Eclipse and JavaScript dev.
Welcome. If you have any queries, please let us know. Follow our blog for more interesting topics.
@@SoftwareTestingMaterial Thank you!
I'm about to enroll a Software Engineering program in a bootcamp with the intent of being accepted for roles in Web Development, since that for junior lv jobs people with little experience don't get a chance of being hired. Now, I got recently contacted about an opportunity of becoming a Junior Web tester (Selenium + SOAPUI + perfecto).
Is this role aligned with my goals? Would companies hire people without experience using these frameworks? OR should I go through the Bootcamp and expect to easily find a job in Web Dev afterwards?
Beautifully explained dada 👏.
Explained nicely. Thank You.
Very very helpful. Got an idea how to explain in interview
one of the best video on framework
I'm glad you liked it. Thanks.
Thank you so much sir, u have explain everything in details... It help me a lot... Thanks a lot... Keep uploading such a informative videos🙏
Thanks. We will continue doing.
Very great video
Glad you liked it. Thanks.
Very helpful. Explained in so simple way👍
It's really helpful and got an idea on how to explain framework, Thanks much dude!
I'm glad it helped you.
Thank you for the clear explanation.
Thanks for watching.
awesome , excellent thankyou veryyyyy much
Thanks. Share it with your friends.
Thank you so much for your clear explanation Sir...
Very informative. Thanks !
Thank you...
It's useful thank u ☺️
Seriously thankful for d video.Appreciate :)
Thanks for watching..
Thank you sir
Well done explanation ! Thank you so much
Thanks for watching. Share it with your friends.
Thanks
It's a good explanation.... can you explain hierarchy of the automation framework with flowchart means helpful for experience people?
Sure we will try to do
Crispy explaination in short time
Thank you
Good explanation sir
Thanks for watching
Thank you! It is very helpful
Thanks. Please share it with your connections.
Thanks you so much...It is very useful for me...🙏🙏
Thanks for your message. Im glad you find it useful.
Perfect
Now I got some idea how to explain test automation framework.
Well explained.. thanks
Thank you. You can find more interview related stuff on our blog www.softwaretestingmaterial.com
Thank u so much ❤
Video is very useful..please explain data and control flow with in these components
Thanks for watching
Excellent.
How long Selenium will be in demand in the market? what is your personal view on this? Along with Selenium other associated areas like TestNG, Jenkins, Appium, Cucumber etc. will also be relevant for testers in the coming years?
In test automation framework we have to explain project architecture or what ?
Very Good content
Thanks for watching
Thank you.. could you please explain implicit nd explicit wait in selenium
This is a very good video, but I was searching for explanation of framework using c#. Could you please help
I like you're videos i understand but how to draw TestNG framework and cucumber framework interview questions given paper draw you're framework architecture
classic explanation
Thanks for watching
can u pls uploded a video for automation testing framework for selenium with python
Thank you.
Welcome
Using python framework please🙏🙏
Is enough only explanation of folder structure or we have to explain like flowchart as experience guy..
When I place the locatrs separately in Property files, even then it is Page Object Design Pattern right ?
Better use separate class for web element locators. Keep the property file for key value pairs...mainly for excel columns
why testbase and login test class under test package??
Hi can you please tell me how to add data driven framework with pom and failure screenshot in same program
Hi, please refer www.softwaretestingmaterial.com
Could you please explain uft Automation framework ?
How do i draw the architecture?
Hi, In your blog page there is different project structure. In this, you put your pages inside src/main/resources but in blog it is inside src/main/java , which one should we follow ?
Hi Lalit Kumar, Its just a preference but most of the teams follow as I mentioned here. So go with src/main/resources
Hi bro , its actually src/main/java
i agree with u. well, i like your videos.. good info :) thanks
Thanks
Please provide the download link of the framework
What design pattern, should be used to create a Browser Instance, which supports Parallel Tests run using TestNG framework?
You could go with Page Object Model. Set parallel="tests" in your testng.xml.
Should we create a static OR non-static browser instance to run the tests in parallel ?
set the driver as public.. public static WebDriver driver = null;
If the driver instance is Static, should we take any other measures to run tests in parallel successfully ?
Hi Check this link. If it doesn't help, let me know. www.softwaretestingmaterial.com/parallel-test-execution-testng/
Sir I'm bit confused can you tell me POM can be considered as a framework if interviewer asked about framework creation ?
no its not a framework ,its a design pattern we will use in frameworks like datadriven,keyword driven, tnstng
POM Comes under Hybird Framework
Can I get sample framework?
Super
Thanks
Why should we write element locators in property files ? Can we NOT just write them in Page class of POM ?
Hi Srinivas, It's purely our choice of maintaining a repository. You could keep all your locators in a property file and call those. If any changes in the locators you could open the property file and modify there. Also, you could use Page Object Model. Maintenance wise Page Object Model will be good as per my experience.
Thank you Sir
Welcome Srinivas.
dear property file only contains data in key value pairs.only data.
Where are we writing the actual testcases in the above framework.
Under tests package Anmol Kumar
It would have been better if you have explained the folder strcture and what goes where.
instead of testng can we use j unit
Ofcourse, you can.
please help me to solve this scenirio___😥kisi ko pata ho plz bataye .
Please share a Github Repository URL containing the source code of the questions below:
1. Use any test framework to write the test, BDD preferred.
2. Create descriptive names
3. Comment and document
4. Check for errors, and respond to them
5. Split your code into short, focused units
6. Scripting can be done in Java or Python using Selenium
If you have any custom instructions on how to run the assignment, please add them to a
README file in your repository
Question:
1. Your Business Analyst has asked to write an automation script which can search for iPhones
having a maximum price of INR 40,000 on Flipkart website.
2. The automation script should be capable of retrieving the device model with storage capacity
and customer ratings.
3. The information retrieved should be saved in a CSV file where data is sorted by Price in
ascending order.
Example of how data should be stored in CSV file:
Device Details, Price, Ratings
Apple iPhone 6s (Gold, 32 GB), ₹24,799, 92,297
Apple iPhone 7 (Silver, 32 GB), ₹29,499, 92,023
Apple iPhone 7 (Black, 32 GB), ₹29,499, 92,023
Can you explain with diacramatic representation
nothing is visible in Video, completly blurr screen is coming.
do u have any application
Check our blog. www.softwaretestingmaterial.com
How to parametrize test using excel
by using Apache POI API, and @Dataprovider Annotation
audio quality too bad please improve it
Too many ads
Sorry for that.
Bhai its too incomplete info provided by u.... First make a framework and then make a nice explanatory video.
Noted your suggestion. Its about just the way we explain framework to the interviewer. Its not about step by step framework explanation.
Would you like to try doing a video yourself?