The page-object-gem tag has no wiki summary.
0
votes
0answers
75 views
Problems with Selenium WebDriver executeScript (using watir-webdriver in Ruby)
I am having trouble executing a particular javascript snippet using Watir WebDriver's browser.execute_script command:
Here is the Javascript in question:
var bodyFrame = ...
0
votes
1answer
42 views
Undefined method error when trying to run around hooks
I am trying to run given scenarios as many times per each account type. I found out in other thread that "around hooks" could be the best option to do it the DRY way.
Below is my code:
require ...
0
votes
0answers
52 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 ...
1
vote
0answers
61 views
Iterating over all elements of a page-object
I have a search filter. I need to be able to check that all fields on the page are there and contain values (if they are select boxes).
I've used the MethodFinder gem to successfully do this, but I ...
1
vote
1answer
85 views
page_navigation. Test don't continue the navigation
I trying to use page_navigation feature to navigate at some page, use custom method and continue navigation to the end of the route.
So here is my route:
PageObject::PageFactory.routes = {
...
1
vote
1answer
43 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
3answers
84 views
Cucumber Pageobject - undefined method link
I want to use the PageObject link method in my class initialisation, but I can't manage to do it :(
Here what I'm trying to do:
class MyPage
include PageObject
def initialize
...
0
votes
3answers
101 views
PageObject “wait element” method don't work
I'm working on test automation with cucumber, selenium-webdriver and page-object gem.
When I try to run simple test cucumber catch the following error:
Scenario: Going to billing # ...
0
votes
1answer
50 views
Stale Element Reference Error
Using the page-object gem and Watir webdriver, we occasionally come across a Selenium::WebDriver::Error::StaleElementReferenceError on a page that loads some basic stuff, makes an ajax request, and ...
2
votes
2answers
52 views
Getting deprecation warnings when calling methods on elements - Could use some advice
I am getting deprecation warnings pretty frequently when calling methods on page object elements. This signals to me that I may not be using the gem as intended yet. I could use some help, could ...
0
votes
1answer
80 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
2answers
108 views
Common Page elements - Can they be inherited?
In a cucumber/Watir-webdriver/page-object environment, I need to verify the presence and functionality of common header and footer links. While these should all be the same, and work, I'd like to ...
0
votes
1answer
22 views
Getting a JavaScript Error when calling prompt method from page-object-gem
Scenario: Testing with prompt popups
Given I am on the frames page
When I popup the prompt and enter "Jared Gatorboy"
SyntaxError: missing ; before statement ...
0
votes
1answer
184 views
Scraping Table with Nokogiri and need JSON output
So, I have a table with multiple rows and columns.
<table>
<tr>
<th>Employee Name</th>
<th>Reg Hours</th>
<th>OT Hours</th>
</tr>
...
1
vote
2answers
58 views
Is monkey patching PageObject::PageFactory#visit_page a good idea?
A developer recently asked if our tests could execute some javascript every time a page is opened. See bug 44299 for more details.
Executing javascript is trivial:
browser.execute_script('return ...
1
vote
1answer
101 views
Page-object with known quantity of generated fields
I'm using Ruby, Watir-webdriver and the Page-object gem at work for automated testing.
Just wondering how people would approach a page that was dynamic in nature in terms of quantity of text fields. ...
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 ...
2
votes
1answer
87 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 ...
-1
votes
1answer
71 views
Why Is This Ruby While Statement Not Working
Background: This is using page-object, and Rspec. The page, objects are setup correctly. Basically what is happening is its skipping the while statement and going directly to checking of the variable ...
1
vote
3answers
193 views
How to call a page-object from a class.rb at Support folder
I am using the page-object gem. Suppose i have a page-object on features/bussines/pages/booking_page.rb for a page like:
class Booking
include PageObject
span(:txtFirstName, :id => ...
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
...
2
votes
1answer
48 views
can there be a divs method in PageObject::Accessors and is my workaround ok?
In page object I would like to have access to multiple divs in a particular way.
This is access to the first div that matches:
div(:search_result, id: /rptSearchResults/)
This would be access to ...
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
1answer
167 views
Get object count in Ruby PageObject
I have a page, which is the list of several other elements.
I want to create page object for this page, and have an ability to count those list objects and perform some action with object by it's ...
1
vote
2answers
208 views
How to get element with css in PageObject
In the project on which I add tests, I have some elements complicated to "get".
The html of my textarea :
<div class="quote">
<div class="clearfix">
<div ...
1
vote
2answers
218 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 ...
3
votes
1answer
441 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, ...
3
votes
2answers
379 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 ...
1
vote
3answers
325 views
Duplicate Checkbox in Page-Object is not defined?
I am trying to click a checkbox that enables a purchase button to appear. When I try to use it, I get a "NoMethodError: undefined method 'eula' for Cart:0x101f54810" error. I think it may be because ...
4
votes
3answers
515 views
Capybara integration with page-objects gem
Is it possible to use the page-object gem and capybara to automate Ruby on Rails testing? When I attempt to access a page object after starting up my test I receive the following error:
Unable to ...
0
votes
2answers
603 views
PageObject with Ruby - set text in a text field only works in the main file
I'm automating a site that has a page with a list of options selected by a radio button. When selecting one of the radios, a text field and a select list are presented.
I created a file ...
