Automation testing with Selenium C# .NET Core (Getting started series)
In this YouTube live series, we are going to get started with Selenium C# .NET Core and Visual Studio 2019.
Here is the advanced series to learn framework development –
Here are other playlist to get more details on Selenium C#
C# for automation testing –
Selenium with C# –
BDD with Specflow –
BDD with Selenium –
Selenium .NET Core –
#selenium #csharp #netcore #visualstudio #testing #executeautomation #youtube #youtubelive
To learn more from ExecuteAutomation, please subscribe and check out below playlists of FREE courses
Selenium &Java
******************
Cucumber with Selenium (cucumber focused) –
Cucumber with Selenium
Cucumber 4 Upgrade –
Selenium Grid –
Selenium framework development –
Selenium 4 –
Selenium Grid with Docker –
Puppeteer –
E2E with Cypress –
CI/CD with Microsoft Technologies
****************************
Azure DevOps Service 2019 –
TFS 2015 –
TFS 2015 Build System –
Automated Build deployment –
Build + Deploy + Test with Jenkins –
Docker & Kubernates
************************
Understanding ABC of Docker –
Understanding Docker for Windows –
Selenium Grid with Docker –
Kubernates for Testers –
Mobile Testing
****************
Understanding Appium –
Appium with C# –
Appium with Java –
Appium with C# (Advanced) –
Appium Framework development –
Mobile Automation testing with Xamarin.UITesting –
Android automation with Robotium –
Flutter app automation with Flutter Driver –
TestProject –
Katalon Studio –
WinAppDriver –
Angular Automation –
EAWeekly –
A general concept video regarding dependency injection explaining the use case from testing / automation point of view and why that gets so important would be awesome.
Maybe you could explain using a general DI package (ex: Autofac). I feel this is the need of Community as we move towards scaled / parallel / cross platform testing.
Just a suggestion ?
Thank you for explaining each section bit by bit, this way beginners like me in this industry can understand it easily. Please continue your way of sharing this information! Keep it up!
@Edgar Finley Definitely, I’ve been using flixzone for since november myself 🙂
a tip: watch movies on flixzone. I’ve been using them for watching loads of movies these days.
Very clear explanation of the concepts! Thanks!
Thank you for the video. It is very informative and very helpful me to learn the tool. Much appreciated.
Hi Karthik, do you have video tutorial for releasing and running automation test in Azure DevOps on Udemy? Please let me know if you have any?
Can you please explain data driven testing with excel/csv using mstest in .NET core. Datasource works with .NET framework. Struggling with .NET core.
Great video. Can you please demonstrate a video on using Visual Studio, .net core, Selenium on Chromebook linux based for automation? Kepp the good work. Thank you 🙂
I don’t have a chromebook with me, but you should do them all via VSCODE
Sir your video is really helpful for me thank you so much (y)
Hello! I have a question. Is it possible to convert it to .NET Core API?
Could you guide us how we can attach selenium with already open current chrome browser?
Is your test application in .NET framework? I don’t seem able to use nunit with .NET core 3.1 and wondering if you were using something else.
Hello Bro, Can u please make a video working on simple extent report with Nunit .net core…
Cuz, I have a problem when I’m creating extent report with dotnet core Nunit…
Manikanta Reddy It’s already covered here bro https://www.udemy.com/course/framework-development-with-selenium-csharp-advanced/
thanks bro, very good explanation
thanks for free tutorial, needed it to brush up again
Thank you for the video. Are you going to create series of Selenium C# .NET Core videos?
Vitalikd1982 It’s already covered here mate https://www.udemy.com/course/framework-development-with-selenium-csharp-advanced/
Do you have any videos/courses on getting started testing APIs with RESTSharp?
Will a login test work if the site is using an external login provider e.g. Okta?
Thanks for the series, great instruction, been needing to pick this up.
“Is much intelligent enough”. I’m stealing that.
Great video. I recently land in a new job and this help me a lot my friend. Even that I am intermediate developer, I did not know almost anything on Automation tests and you really helped me to get an excellent overview of what I need to do. This is a great start! Thanks again.
Leniel Luzardo Glad to hear mate ?
Thank you so much. This was really good. I especially liked the way you refactored the code to make use of dependency injection. To me that was the best part of the video because I am not a tester even though I am watching this. Writing c# code that implement common design patterns is more relevant to my field.
@Ashwini Reddy He doesn’t explain it, I just noticed it myself. First he wrote a straight forward test code @34:26. He then adopted the Page Object Model pattern which is popular when testing in Selenium (It’s the first time I heard of this pattern because I am not a tester). When he created the Home page and the Login page classes, the constructor methods for these classes take IWebDriver as parameter. Writing the code this way means he can now inject a webdriver of any type to his home page and login page classes.
For example @48:43 he can inject these web drivers for different browsers which makes his code extensible:
IWebDriver webDriver = new ChromeDriver(…);
or
IWebDriver webDriver = new FirefoxDriver(…);
[Test]
public void Login()
{
HomePage home = new HomePage(webDriver);
// Rest of the code…
}
I am a novice programmer and these are all new concepts to me.
Hello @The Superior man, can you please tell me at what time he explained that dependency injection part? Thanks in advance.