
- 4
- 9 853
SoftwarE tesT warriorS
India
เข้าร่วมเมื่อ 10 มิ.ย. 2020
ALL my friends this channel will bring you the hidden information regarding software testing activities.
Contact me in case you need at : vivek.singh8919@gmail.com
Contact me in case you need at : vivek.singh8919@gmail.com
QA Testing career || NIIT students session || College students || Career counseling in IT
Please subscribe & share and put your questions in comments section
มุมมอง: 95
วีดีโอ
#Jmeter #devops Integration of Jmeter & Jenkins with performance report inside Jenkins
มุมมอง 3K4 ปีที่แล้ว
Learn how to integrate Jmeter with continuous integration tool Jenkins and also how to create performance report inside Jenkins only
Jmeter CSV and HTML report creation via command line using Mac/WIndows
มุมมอง 1.3K4 ปีที่แล้ว
All performance test engineers can use this video for command line execution of Jmeter scripts and generate Csv and Html reports that can be shared with client and management
(MYSQL) Database performance Testing using Jmeter with database test plan
มุมมอง 5K4 ปีที่แล้ว
QA beginners in performance testing can use this video for database testing using Jmeter tool.
For insert query, Which one I need to use? Callable ?
Really Helpful, looking forward to more videos like this for performance and API testing.
This is very informative video which helped.
Hello
Much needed to Mysql
Awesome content
Really helpul
This video helped me.
Must watch able tutorial
It worked
Awesome video ,it helped in database performance testing.
Glad to hear that
Nice video for performance testing.
Glad you liked it
Really helpful in configuring jmeter with Jenkins,And I successfully created dashboard report
Nice information.
Helpful video
Helpful video.
This is so complicated explanation
Let me know what you didn't get . So that I clarify your doubt
Very helpful video ..need one video on how to generate html report in command line from blazemeter log file.
Will upload soon
Learned now to create Jmeter report ...
Good for QA beginners
Good job Mr. Software test warriors , Thannks for a hardwork for us
It's my pleasure
Very Helpful
Glad it helped
Very helpful, thanks for sharing
Shukriya..
Much needed video, thanks.
Glad it was helpful!
This is really helpful
Thnx bro...
Hi, how to connect with mongodb.
Hi pratheep for mongo DB connection you can follow steps : 1. Download groovy jar file: 2. Download mongo java jar file: 3. Jmx connection: use below code import com.mongodb.* import com.mongodb.client.MongoClients; import com.mongodb.client.MongoClient; import com.mongodb.MongoClientSettings; import com.mongodb.ServerAddress; import com.mongodb.client.MongoCollection; import com.mongodb.client.MongoDatabase; import org.bson.Document; import java.util.Arrays; try { MongoClientSettings settings = MongoClientSettings.builder() .applyToClusterSettings {builder -> builder.hosts(Arrays.asList(new ServerAddress(vars.get("mongoHost"),vars.get("mongoPort").toInteger())))} .build(); MongoClient mongoClient = MongoClients.create(settings); MongoDatabase database = mongoClient.getDatabase(vars.get("databaseName")); MongoCollection<Document> collection = database.getCollection(vars.get("collectionName")); vars.putObject("collection", collection); return "Connected to " + vars.get("collectionName"); } catch (Exception e) { SampleResult.setSuccessful(false); SampleResult.setResponseCode("500"); SampleResult.setResponseMessage("Exception: " + e); } Note : Above config maybe bit complex , I will come up with my next videos on all DB's widely used
@@softwaretestwarriors1925 thanks
Can you share same videos for SQL server & posgress ...it will be really helpfull
Sure will post in few days