Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7734083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:09:41+00:00 2026-06-01T07:09:41+00:00

When you automate web UI testing you want to organize your tests so that

  • 0

When you automate web UI testing you want to organize your tests so that they are maintainable and code duplication is minimized as possible. On of the way to go is Page Object pattern.

Did you try it in real world projects? Are there any alternatives? How do you model complex sites (few nested master pages, popups, large forms with crazy validations)? I’m interested in general patterns as well as in specific cases (Selenium/ASP.NET MVC/NUnit).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T07:09:42+00:00Added an answer on June 1, 2026 at 7:09 am

    You’ve asked quite a lot of questions, I’ll try to answer a few of them.

    I’ve used Page Object in a web app using Selenium and also in a desktop WinForms app (while that’s not strictly Page Object, I’ve used it in the same way — View Object, perhaps?). My verdict is that it works great and I’d definately recommend it.

    Here’s a short example of what a test might look like, the way we wrote it:

    [Test]
    public void AccountPageNameIsLoggedInUsersName()
    {
        FirstPage() // Returns FirstPage
            .LoginAs("tobbe", "s3cr3t") // Returns LoggedInPage
            .ClickOnMyAccount() // Returns MyAccountPage
            .AssertThat(p => p.Name, Is.EqualTo("tobbe")); // p is of type MyAccountPage
    }
    

    Here, the Selenium magic is placed inside the FirstPage() method and the pages. This way you hide all the unnecessary implementation details from the test. I guess you can figure out how the methods are implemented.

    A bonus from hiding the Selenium stuff inside the pages is that you could, without changing the test, convert it into e.g. a Model-View-Presenter test where the PageObject represents the view (that’s similar to what I did in the WinForms app).

    Regarding master pages, what we did is that we decorated the pages with an interface and created extension methods on those interfaces:

    public class LoggedInPage : Page<LoggedInPage>, IMainMenuHolder { ... }
    
    public static class MainMenuHolderExtensions
    {
        public static MyAccountPage ClickOnMyAccount(this IMainMenuHoder me) { ... }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to automate testing of WCF Web Services(over TCP) using QTP's WebServices Add-In.
What are the good automated web UI testing tools? I want to be able
I have ASP.NET web pages for which I want to build automated tests (using
I want to do full integration testing for a web application. I want to
i want to automate page using web browser automation. In the there is only
I'd like to use Selenium to automate a few web tasks (not for testing).
I want to load test the web application that we're working on? Can you
I've been creating Windows Powershell scripts to automate Web UI Testing for the past
how can i automate testing of a web based application? What are some frameworks
How can I automate the web-application build process, that includes following steps: Change connection

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.