Tip This is a post to help your Selenium automation code become faster and more effective!

vinzh

New member
Joined
Apr 20, 2024
Messages
1
Programming Experience
1-3
🚀
Hello programming community! Today, I am pleased to introduce and share my new NuGet package designed to support Selenium in C#.
🎯


🔧
This package makes writing automated test scripts faster and easier than ever! From quick setups to visually writing test cases, everything is simplified to save time and enhance your work performance.

✨
Experience the difference and share your feedback so the package can be improved in the future. Discover how it can help optimize your development process and ensure the quality of your software products.
🔗
Download link and usage documentation are attached below. Try it now and don't forget to follow my page for the latest updates!
GitHub link: GitHub - vinzh05/SeleniumHelper
NuGet link: Selenium.SeleniumHelper 1.0.3
In Visual Studio, you can search using the keyword: SeleniumHelper
If you find it useful, please leave a ⭐️star,
🍴
fork if you want to contribute, and
👀
follow to not miss updates on the nuget and support me!
 

Attachments

  • 438931296_1109285370144361_7996046979086912856_n.jpg
    438931296_1109285370144361_7996046979086912856_n.jpg
    61.1 KB · Views: 6
As a quick note: one should not checkin the build artifacts into GitHub with your sources. In other words, you shouldn't have committed your bin, obj, and packages directory. If you had used the default .gitignore normally created by Visual Studio, that would have helped you from committing those artifacts.

Also you would not normally commit your local machine configuration files, e.g your .vs directory.

If you want to make it easy for your users to have binaries ready to use, then make use of GitHub's "Releases" feature.
 
Also does this make Selenium code faster and more effective? Or does it make writing Selenium based code faster and more efficient? Scanning through the source code, I didn't see anything there that tries to analyze and code and make it faster or more efficient. What I did see was a lot of helper methods and effectively builder classes.
 
Back
Top Bottom