Your knowledge is amazing. It is so hard to get all this info in the automation testing domain. I wonder how many docs you might have read to understand all this. Thank you so much for breaking it in easy to understand manner for the rest of the community.
Enjoyed the video. I love how clean the code is and even the formatting with aligned indents and spaces (fulfils my symmetry obsessions!! haha). Cheers for the great video.
WOW...thank you so much. So easy to follow. You are very good at what you do. I just need to practice this as it is a bit complex. But again...thank you♥
www.testingminibytes.com/courses/selenium-java-with-docker-git-and-jenkins You can find the course I taught here. There are free videos available to watch before making your purchase
Hello Sir, Thank you for knowledge sharing, really useful content. May I ask, how to send a variable through the command line that depends on env variabale? For ex, -D{env}.baseURL, can i do that somehow? Although, I have in my framework stored separately qa.baseURL and test.baseURL, I want to have possibility to sent that value also through Jenkins. Thanks.
Could you please watch the part 1 of this playlist where I have explained this. To answer your question, you should pass mvn clean test -Denvironment=staging
Excellent!!.. Thanks. As mentioned in video I'm able to run test and prod environments by editing run Configuration. I want to run from maven command , could please share maven command to change enviornments
@@TestingMiniBytes iam trying to implement this method for the existing code, it is not supporting and we are extending all the testclasses to one of the base method,
Hey thanks ,i really luv it. But thing is m getting error of URI is not absolute.. can u please guide me the same... evn i want declare that public static FrameworkConfiq configuration = ConfigFactory.create(Frameworkconfig.class) And config instance want user
Hi sir, Can you please make a video about how to test any web services endpoint in multiple environment (Dev/QA/Stage) parallel using Java and REST Assured in TestNG framework. Thanks!
@@TestingMiniBytes Thanks for your quick response. FYI i am new to automation and it would be great if you can make another video only for web service testing taking one REST endpoint as an example. Thanks!
Hi, FrameworkConfig config = ConfigFactory.create(FrameworkConfig.class); The "create" is throwing an error - Bound mismatch The generic method create is not applicable for the arguments... Please guide amuthansakthivel . Regards.
You don't have to use anything like that here. Everthing is managed by the interface that we create. Why do you want to achieve this with a gradle task?
Hi amudhan thanks for replying.... i tried but error showing "base uri cannot be null". there is any plugin need to pass env variable... please help me buddy i m struck with that
everything seems to work fine except the last part i.e @Key("${env}.base_url") seems to give null. it works when I give @Key("dev.base_url") . Could you tell me what am I missing? any import? or dependency
Your knowledge is amazing. It is so hard to get all this info in the automation testing domain. I wonder how many docs you might have read to understand all this.
Thank you so much for breaking it in easy to understand manner for the rest of the community.
I am really glad it helped you. 😀Yes I learned it the hard way.
very true
Awesome video. Thank you very much for sharing it with us
Enjoyed the video. I love how clean the code is and even the formatting with aligned indents and spaces (fulfils my symmetry obsessions!! haha).
Cheers for the great video.
Glad you enjoyed it. Please spread about the channel tp your friends
WOW...thank you so much. So easy to follow. You are very good at what you do. I just need to practice this as it is a bit complex. But again...thank you♥
Great video for properties management.
Great, implemented in my project. Worked Great!!
Thank you so much for sharing this, incredibly helpful
Great going
Hello Sir, Thanks a lot! great! waiting for live training
Superb video, this is really a painful area and you made it pretty easy 👌
Good info 👍
Very much useful!
Nice one
Good content Amuthan.
What is it from springboot? We are only using owner library
@@TestingMiniBytes Yes. Sorry I confused with application properties file.
Wowwww…So Amuthan this can implemented to the existing automation framework development video which you have done..right?
Yes you can. I dint know this when I developed that.
I am learning every day and sharing what I admire.
@@TestingMiniBytes Thank you.As we say,better late than never…learning so much from ur videos keep coming with more..😊
Hi sir, tutorials are ver helpful. Please can you guide how to add soft and hard assert failures to extend report
Using listeners, you can add failures to report. Watch my selenium framework playlist
Attakasam. Can we use this with json?
This library supports xml. I dont think it supports json.
great content!
Hi, By any chance you to teach selenium one on one? I really liked your video. Enjoyed every moment
www.testingminibytes.com/courses/selenium-java-with-docker-git-and-jenkins
You can find the course I taught here. There are free videos available to watch before making your purchase
Wow! Thanks a lot!
Hello Sir,
Thank you for knowledge sharing, really useful content.
May I ask, how to send a variable through the command line that depends on env variabale?
For ex, -D{env}.baseURL, can i do that somehow? Although, I have in my framework stored separately qa.baseURL and test.baseURL, I want to have possibility to sent that value also through Jenkins. Thanks.
Could you please watch the part 1 of this playlist where I have explained this.
To answer your question, you should pass
mvn clean test -Denvironment=staging
Good content as always!!
Pls share this with your friends
Superb video sir,I have one small doubt, What should be added in @Config.sources to fetch value from VM argument?
Is that not environment property?
@@TestingMiniBytes like we sent -Dbrowser=chrome in VM arguments
@@nehalchowdekar4604 that is covred in the system properties. It should work
Excellent!!.. Thanks.
As mentioned in video I'm able to run test and prod environments by editing run Configuration. I want to run from maven command , could please share maven command to change enviornments
Pass the variable as System variable.
mvn clean test -Denv=staging
@@TestingMiniBytes Thanks for quick reply.. not working,, it always choose test env through maven command
@@JDPatel-io2ln ask your question in telegram group with screenshot
@@JDPatel-io2ln I am having same issue. It is using test env instead of dev env
Does this works for java selenium webdriver with testNG
Yes why not
@@TestingMiniBytes iam trying to implement this method for the existing code, it is not supporting and we are extending all the testclasses to one of the base method,
@@KkB700 you should not use inheritance but composition to use this
@@TestingMiniBytes is there any video by using composition
@@KkB700 check my master framework playlist
Hey thanks ,i really luv it. But thing is m getting error of URI is not absolute.. can u please guide me the same... evn i want declare that public static FrameworkConfiq configuration = ConfigFactory.create(Frameworkconfig.class)
And config instance want user
Please ask your question in telegram group with screenshot.
From my guess you have to add file: infront of path.
Hi sir, Can you please make a video about how to test any web services endpoint in multiple environment (Dev/QA/Stage) parallel using Java and REST Assured in TestNG framework. Thanks!
This knowledge can be applied to rest assured as well
@@TestingMiniBytes Thanks for your quick response. FYI i am new to automation and it would be great if you can make another video only for web service testing taking one REST endpoint as an example. Thanks!
@@eftikharuddin1023 just put your api env url with another name. Just try.
Hi, FrameworkConfig config = ConfigFactory.create(FrameworkConfig.class);
The "create" is throwing an error - Bound mismatch The generic method create is not applicable for the arguments...
Please guide amuthansakthivel .
Regards.
Are you using config factor from owner library?
Could you also pleae implement the same using gradle test task in build.gradle file?
You don't have to use anything like that here. Everthing is managed by the interface that we create.
Why do you want to achieve this with a gradle task?
@@TestingMiniBytes Using Gradle to run the tests in multiple environments using Command line args.
Hi @Amudhan how to run this through cmd.... please....
mvn clean test -Denv=staging
Hi amudhan thanks for replying.... i tried but error showing "base uri cannot be null". there is any plugin need to pass env variable... please help me buddy i m struck with that
@@sureshkumarg5673 no, your error says you need to pass baseUri
yes.. i have two property file and try to pass dev uri from cmd prompt.... but it cant read that
@@sureshkumarg5673 what command you used.
I need to give this env from maven how to do it explain in one video
mvn clean test -Denvironment=staging
@@TestingMiniBytes thanks worked
everything seems to work fine except the last part i.e @Key("${env}.base_url") seems to give null. it works when I give @Key("dev.base_url") .
Could you tell me what am I missing? any import? or dependency
Are you passing env correctly
@@TestingMiniBytes I have tried exactly as shown..
Couldn't find the solution hence. Currently maintaining multiple properties files for each env
@@sanketnegi1 Upload project in github and I can take a look. You should ask these questions in the telegram group
You must be using the lower version of Owner. Use version 1.0.12
Dependancy is not working..not able to import class can anyone help
Please ask question with code and error in telegram group