Creating Custom methods for Controls in Selenium (Part 2) -- Part 6 (Selenium automation with C#)

preview_player
Показать описание
In this part we will create some of the custom methods for controls like
1. Textbox
2. Buttons, checkbox
3. Drop Down List

To perform Set Operations
Рекомендации по теме
Комментарии
Автор

I'm brazilian and your english is very easy to understand, also you explain well, so thanks!!!

nathanoliveira
Автор

I started to work in auto tests development. Your course is very much of help. Now when I see the project that i got to work in, everything becomes clear. Thank you so much for your job.

ВикторКурышев-чр
Автор

Recently converted by a friend to watch your C# Selenium vids and I have not been disappointed. Good stuff

paulkelly
Автор

You are superb in delivering Selenium contents for absolute beginners :) Thanks

TAHIRable
Автор

Hi Kartick, I like your explanation and it's very easy to understand. You have done a fantastic job. Thank you.

shamim
Автор

Good video and nice explanation!! Thank you!

HD-Universe
Автор

Great way to explain everything.
I've a doubt here. You created method for drop-down with name "GetTextFromDDL" but in program.cs, you didn't change the code for drop-down but still it worked. I think it worked when you changed from Text to GetAttribute.
Can you please check?

mjanilrautela
Автор

10:15 you have a property called SelectedOption why aren't you using it?

demichos
Автор

Thanks Karthik for the videos.. can you please share a video which describes the automating desktop application using selenium C#

SIVAPRASADPOSA
Автор

Just Curious - Why couldnt we Get the Text from the below code for the Drop Drop Selection

return new

Are you suggesting tht there could be multiple options that could be selected ?

arunwuppuluri
Автор

The output on title shows 1 rather than "Mr." (The value from my Title is:1)
also tried below, but still the same 


Any ideas to show text "Mr."?

qianzhou
Автор

Test is working fine but Text output always come empty.... no value printed... please suggest the solution

Mayu_life
Автор

Can you help me out. So I am trying selenium with google candler. I was able to sign in and now I want to press the drop down menu to select calenders. I am stuck here. How do you drop down menu with google calender?

randy
Автор

Hi!

Your courses are awesome! But in this particular one I have a problem. The test executes fine, but the text output always comes empty in the following way:

The value from my Title is:
The value from my Initial is:

Do you know what this might be?

Thanks!

lucasdelu
Автор

Can anyone tell how much c# topic i should learn for automation...

laxmankere
Автор

Hi, Please help me with this issue I have. I'm running the same classes in my local and I'm getting this error message that the : no such session". Have anyone got this issue? when using this awesome's guy examples? Please help

yelitzaruales
Автор

The GetAttribute("value") is throwing an exception in my GetMethods class, i.e., NoSuchElementExcepiton was unhandled by user code.

itchyfangaz
Автор

Seleniumgetmethods is not available when I use vs2019- Nunittest project. Could call the class.method in it

lakssubbu
Автор

I was getting a "NoSuchElement" exception untill I placed "Console.WriteLine..." between SeleniumSetMethods and SeleniumSetMethods.Click [in public void
ExecuteTest]

nikta
Автор

A simplified way to get text from ddl:

public static string GetTextFromSelect(IWebDriver driver, string attributeValue, string attribute)
{
return new SelectElement(FindElement(driver, attribute,
}

FabioSilva-nsex