Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Frameworks for Selenium in C# [closed]

Are there any open source frameworks based on Selenium WebDriver in C# that

  • Abstract all test and object logic away
  • Record actions straight into Selenium Webdriver C# code?

I am thinking of writing a framework (not sure about the recording feature), but maybe it's already been done!

like image 505
Andrey Avatar asked Jan 19 '23 11:01

Andrey


1 Answers

•Abstract all test and object logic away -- must be done manually

Record actions straight into Selenium Webdriver C# code? -- the firefox plugin "selenium ide" can output test steps in C#. You can then use the "page object" design pattern to abstract away the object logic.

Here is the best example of using the "page object" pattern I have found. Example is C#

http://seleniumexamples.com/blog/examples/selenium2-in-net-framework/

like image 62
Brian121212 Avatar answered Jan 27 '23 21:01

Brian121212