A design pattern to represent a web page as an object. Usually used in unit testing and browser automation.

learn more… | top users | synonyms

0
votes
1answer
20 views

Can all my classes be singletons?

I'm implementing a project where I'm testing my UI. So, each part of my UI is a separate class(Seleniums page object pattern). Now, since it's just a single web page I'm testing, according to me, ...
-2
votes
0answers
26 views

How to pass classname as parameter to function which returns same classname

We are using Selenium PageObjects and PageFactory design pattern for automation. I want reuse StudentPersonalArchives(ParagraphTitle,STStudentDashboardPage) with different classname i'll pass each ...
0
votes
3answers
63 views

How to make returntype of the class dynamic

We're using PageObjects pattern for automation. I've function, public className SelectTab(driver,path,className)throws Exception{ driver.findelement(By.xpath("path")).click(); return ...
0
votes
0answers
50 views

Accessing to JS-widget from module

I try to access to custom JS-widget from my module. Base page class just include PageObject, DataMagic and RSpec::Matchers. My class require_all 'lib/pages/billing/billing_form_panel.rb' class ...
0
votes
1answer
168 views

How to represent Page Object navigation in a Selenium WebDriver project using java

I have read in a few places that Navigating between Pages when using WebDriver API is typically done by the Page Object returning the next page that should be returned when the action that causes the ...
0
votes
1answer
210 views

Using PageObjects, Page Factory and WebDriverWait in Selenium WebDriver using Java

I've been using Selenium WebDriver to implement functional tests for some projects that I've worked with. I'm trying to use the Page Object design pattern with Page Factory to factor out my locators. ...
1
vote
1answer
41 views

How to select a option from drop down using select_list comment in capybara page-object

For HTML like this: <select class="intl_drop" name="select_locale"> <option value="0">- Select One -</option> <option value="1">United States - English</option> ...
1
vote
2answers
140 views

Holding IWebElements as a collection in C#/Selenium when using [FindsBy] attribute

I'm trying to set multiple IWebElements to a collection using [FindsBy] attribute included in OpenQA.Selenium.Support.PageObjects, like following. Suppose I want to hold all "li" elements in instance ...
1
vote
2answers
120 views

String Array Method not Returning the Array Object - Selenium WebDriver

Please Find my code, its not Returning the Array object value, its return only one array object public String[] verify_userRole(String[] Expected_role) { String[] actual_role = new String[4]; ...
1
vote
1answer
78 views

Should test data be passed from PageObject or test classes?

I'm in the process of developing an automation framework using Selenium Webdriver following the PageObject pattern where there are 2 layers: Test classes (Test specification) PageObject classes ...
0
votes
1answer
77 views

Finding a fieldset using page-object

I'm trying to find a set of checkboxes, but I need to locate them in a fieldset. The html is like this (it's a gwt app, so tons of stuff is generated: <div id="UpdateUserView-RolesColumn"> ...
1
vote
1answer
932 views

Selenium 2 webdriver with JUnit or TestNG for PageObject Design Pattern

We are trying to choose between Junit and TestNG for our Test framework with Selenium 2 Webdriver. We have decided to use Page object design pattern for this. I am convinced that TestNG would suit ...
1
vote
2answers
78 views

Ideal way to model elements on a web page as classes in WebDriver for abstraction and re-use

What could be the ideal way to model the elements on a webpage as classes for the sake of abstraction and re-usability? Currently, what I have created is a BaseElement.java class that contains the ...
-1
votes
2answers
296 views

How to verify a page title using WebDriver and page object?

I am trying to write a method to verify page title using page objects but I am unable to do it. Could you please help me out how to write a method to verify page title after searching something in the ...
1
vote
1answer
42 views

How-To on implementing Page Object Model with Telerik Test Studio

I am evaluating Telerik Test Studio (http://www.telerik.com/automated-testing-tools) as a web regression tool and looking for a how-to on setting up and using of a Page Object Model environment like ...
0
votes
0answers
31 views

Should Page Object Methods Throw Errors?

In a similar vein to this question, should page object methods throw errors/exceptions if problems arise? For example, if a page method clicks a button, but the button is not found, should an explicit ...
0
votes
1answer
138 views

Converting my existing code to PageObject design pattern with PageFactory

I'm creating tests using Selenium 2 Web Driver with C#.Net. After reading through a lot of the Selenium documentation, I am not sure if I'm followign the correct design pattern and feeling unsure on ...
1
vote
1answer
71 views

Is it possible to access a 'style' type css selector when using cheezy's page-object and watir?

In my page.rb, I'm using div(:select, :css => 'div.active[style="display: block;"]') which is giving me the error - Watir::Exception::MissingWayOfFindingObjectException. In the console, ...
3
votes
1answer
229 views

Which WebElements are filled by PageFactory.initElements?

I am trying to use the PageObject design pattern with my Selenium testing, and I have the following set of Page classes: A PageObject base class, which keeps track of the WebDriver and site's base ...
3
votes
3answers
110 views

How to get the html source of a page_object element?

Imagine i have a div like (in Watir language): @browser.div(:id, 'home_slideshow') I need the html code inside to do some "magic regex" :). The way to get the div html code could be: the_div_html ...
1
vote
1answer
288 views

Selenium Webdriver - PageObject and driver pointer

I'm making a testsuite in Selenium Webdriver using PageObjects, but I'm in doubt wether a WebElement referenced instance can be worked even if driver points to a different frame? The site I'm writing ...
2
votes
1answer
86 views

How to get the attribute_value of a page_object element?

Imagine i have a image like: the_image = @browser.image(:id, 'image01') The way to get the value of its class could be: image_status = the_image.attribute_value('class') Ok. I'm using ...
2
votes
2answers
508 views

Webdriver SwitchTo()

I am beginner in webdriver started learning page object model Here is the code i use: public static class test1 { public static ISearchContext Driver { get { ...
1
vote
1answer
185 views

Using webdriver PageFactory to pick certain page

I have a web project where clicking a button navigates to another page. The new page can be 1 of three possible pages depending on data in the server. (The url may be the same for 2 of those pages) I ...
0
votes
1answer
99 views

Design Pattern/ OOP : How to split operation into classes

I am working in python Page Object for automation. I have a basePageObject(ChangePasswordPage) and it has 4 other child pages which differs by the by the fields on the page. All these change password ...
3
votes
2answers
716 views

How to implement WebDriver PageObject methods that can return different PageObjects

I've just started using WebDriver, and I'm trying to learn the best practices, in particular using PageObjects and PageFactory. It's my understanding that PageObjects should expose the various ...
1
vote
2answers
78 views

Why is my rescue block not working?

I am using selenium webdriver and trying to get a page object to look at a page multiple times before it reports a test failure. My problem is that a am getting an error that is not being caught by ...
0
votes
1answer
43 views

Using Test::Unit in an abstraction layer

Is there a way to call assertions from inside an object? I am writing Selenium tests and using test unit for assertions and easy reporting. I have an abstraction layer between the top level test ( ...
0
votes
1answer
100 views

Why Does This Return “cannot convert nil to string” [closed]

I am using almost the exact same setup of Jeff Morgan's book "Cucumber & Cheese" and I have a page object with like this class NewPublicationPage include PageObject include RSpec::Matchers ...
1
vote
2answers
131 views

Have Cucumber Step Verify Variable Set By A Page Object In Another Step

I am using Cheezy's PageObject to setup some cucumber tests. I have everything pretty much setup like Jeff Morgan's book "Cucumber & Cheese". Right now I have a page object "PublishPage" setup ...
0
votes
0answers
191 views

Selenium PageObjects pattern and components

What is the standard approach when applying the PageObjects pattern to components of a page? For the sake of an example lets say I am writing tests for the Features on an Amazon product page. That ...
0
votes
1answer
338 views

How can i implement Webdriver / PageObjects / Pagefactory in Java in a way that can be generally applied

Here is my attempted implementation understanding of PageObjects/Pagefactory as applied to Webdriver: 1. Create the following structure in eclipse --> com.example.qa.pageobjects --> ...
1
vote
2answers
217 views

How to avoid page-object deprecated for checkbox

I use cucumber since one year, and I am adding page-object-gem into it since few weeks. When I execute the test, I get message : DEPRECATION WARNING You are calling a method named checkbox at ...
0
votes
1answer
838 views

Webdriver Error “Driver info: driver.version: unknown”

I am trying to run the example from Page-Objects Example and it runs fine on Windows 7, but when i try to run it on Linux ( Fedora 15 ) I get an error: GitHubLoginTest (1) ...
0
votes
1answer
243 views

Can you find elements by id,title,link etc through site-prism or only by css selectors?

By using site-prism gem for integration testing, can I find page elements by referring to id or title or link or xpath or are they searchable only through css
0
votes
2answers
47 views

Could an object reinitialize itself before a method is exicuted?

Please forgive me if this is obvious but can I have an object reinitialize itself before a method is executed? I'm using Ruby and selenium to test a web app and I am trying to improve my page ...
0
votes
1answer
961 views

Webdriver PageObject Implementation using PageFactory in Java

here is what i have so far: A working Webdriver based Java class, which logs-in to the application and goes to a Home page: import java.io.File; import java.io.IOException; import ...
0
votes
1answer
166 views

What are the benefits of returning new page object in page object pattern?

For example, if I were to test Google search, what is the benefit of the Page Object model returning new Google Search Page Object? E.g. public class SearchPage { private final WebDriver driver; ...
2
votes
1answer
384 views

Selenium 2 WebDriver does not evaluate updated DOM as expected

I am using Selenium 2 WebDriver in C# to automate an input page. There is a validation summary control that is hidden when the DOM is loaded. Here's how it looks on additional load. <div ...
0
votes
1answer
270 views

Passing Exception Information from Global.asax to ErrorPage.aspx

I have a global error handler in Global.asax and am trying to display the exception information in a page called ErrorPage.aspx. I've read Microsoft's page about passing information between asp.net ...
1
vote
1answer
253 views

Selenium FindBy attributes using Javascript and Wait in C#

I am using Selenium and I have the following extensions methods for executing javascript. private const int s_PageWaitSeconds = 30; public static IWebElement FindElementByJs(this IWebDriver ...
1
vote
2answers
312 views

Selenium, Java, PageObject pattern, broken hierarchy

I am modeling my web app interaction using the Page Object pattern. Most pages in the app have some standard options like "log in", "log out", "home", etc. Additionally, they all have a protected ...
14
votes
5answers
1k views

page object model: why not include assertions in page methods?

First-time poster. I've been working in UI automation for many years, but was only recently introduced to/instructed to work with the Page Object Model. Most of it is common sense and includes ...
3
votes
1answer
434 views

Error when using the same browser instance for several features on Cucumber

I have a problem creating browser instances for Cucumber drivers. If i create the object on env.rb inside the “Before do” as: Before do @browser = Watir::Browser.new 'firefox' end …works fine, ...
0
votes
1answer
343 views

Site Prism, Capybara: Selector with variable

I'm mucking around with the site_prism to implement a Page Object Model in capybara. It looks very interesting. How would I specify a selector such as "[data-id='x']" where x is an integer? Something ...
0
votes
0answers
425 views

Webdriver Actionchains encapsulation ina page object design python script

I am playing around with a simple login page functionality in a page object-y fashion modeled after Adam Goucher's example page object design pattern Adam uses Selenium, but I would like this to work ...
3
votes
2answers
376 views

Dynamic page URL

I have a page with URL that is dynamic. Let's call it view post page. URL for post 1 is site.com/post/1 and for post 2 is site.com/post/2. This is what I do at the moment to check if I am at the ...
0
votes
1answer
240 views

How much should interfaces of elements in Page Objects be abstracted?

I have a page object called LineItemsPage class LineItemsPage attr_accessor :add_line_item_button def initialize(test_env) @browser = test_env[:browser] @action_bar ...
2
votes
4answers
6k views

Selenium webdriver page object

Quick question about page objects in selenium webdriver. our site is very dynamic with lots of ajax and various authentication states. It is tough to figure out how to define each page object BUT ...
0
votes
1answer
612 views

Locate only non-hidden elements using Selenium WebDriver in C#

I have a collection of records on a web page, and when a record is clicked, a 'Delete' link is displayed (actually 'unhidden' as its actually always there). When trying to access this 'Delete' link, ...

1 2