-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Easy/Safe way to add custom widgets in subclasses? #410
Comments
I am also very interested in whatever solution this is for this. I would also like to have a page object contain various widgets (smaller page objects) representing different parts of a page. It's not clear how to do this from reading the docs, unless I overlooked it. @cheezy |
I'm going to make a release today that will not include a fix for this. I will make it a focus on the next release which should be in a week or so. |
@djangofan you should look at page_sections. They are exactly what you are looking for. I included examples of this in the last release of my book. |
@imjonsnooow I've looked over this briefly and really do not know why it is not working. If this is important, I will take the time to try to resolve it. As you said above, simply including the PageObject gem in the subclass resolves the issue. Is this a valid resolution for you? |
@cheezy - this isn't a huge priority for me right now, so I'm okay with the workaround identified (as it has not caused any adverse effects that I have noticed) :) |
A possible solution may be https://stackoverflow.com/a/14631604/1200545 |
Hi team,
I've found a use-case where the custom widgets are less flexible than is ideal:
If we try to run this code, we will get a
NoMethodError: undefined method 'gxt_table' for Two:Class
. It seems that when youregister_widget
, one of thepage-object
modules are enhanced to have the appropriate methods, but those methods do not end up on classes that have already included PageObject.Re-including PageObject does fix the issue, but I'm unclear on whether or not doing this would cause any unintended consequences. Mostly looking for advice, here.
Thank you!
The text was updated successfully, but these errors were encountered: