page-object icon indicating copy to clipboard operation
page-object copied to clipboard

Gem to implement PageObject pattern in watir-webdriver and selenium-webdriver

Results 29 page-object issues
Sort by recently updated
recently updated
newest added

Registering a widget assumes that there there is a related Watir method for your desired element type. This works for standard element types, but fails custom element types - eg...

feature-request

if you try to locate an element by using PageObject method "ins_elements" you will get an error: ``` NoMethodError: undefined method `inss' for # Did you mean? inses ins ```...

bug

Angular 2+ introduced Testabilities. There is no longer a way to get the pending requests, but we can find the number of stable zones. This should address Issue #450.

I'm going to use page-object to test Angular apps. As far as i can see, there is support for AngularJS (ajax calls count), but not for Angular (2+). https://github.com/cheezy/page-object/tree/master/lib/page-object/javascript Is...

feature-request

As noted in a recent [Stack Overflow question](https://stackoverflow.com/a/58290298/1200545), the dynamic element locator requires the tag name to be specified. This is pretty awkward looking when the tag name is unknown:...

feature-request

While am using the wait conditions in the pageobject am getting the following error. Can any one resolve this issue. ```ruby 19-08-16 08:23:42 WARN Selenium [DEPRECATION] Selenium::WebDriver::Error::ElementNotVisibleError is deprecated. Use...

How exactly do I make page-object use a Selenium webdriver when initializing it?

We have a large implementation with several scores of PO's. We also load data in the initialization of POs. Because all POs are initialized when the test kicks off, All...

feature-request