Anyone familiar with using test automation frameworks for testing web applications?

Endive Software 1 Reputation point
2019-10-31T05:45:03.467+00:00

Got some issues in creating the conceptual framework and questionnaire. Is there someone who can help me in this regard.

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
36,197 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. behoyh 6 Reputation points
    2019-10-31T18:47:20.497+00:00

    Some successful approaches I've seen involve a test pyramid.

    • End-To-End Tests
    • Acceptance Tests
    • Integration Tests
    • Unit Tests

    To answer your question, you could use a web driver like Selenium, which you can plug into another testing framework like xunit. You'll probably need a base class to get Selenium bootstrapped and from there you should be able to run through end-to-end scenarios through Selenium's WebDriver.

    Sources

    1 person found this answer helpful.
    0 comments No comments