We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sorry if this is answered somewhere in the docs, but I didn't see it.
What is the difference between the get: and value: ?
I pulled this from your own code https://github.com/stuplum/astrolabe/blob/master/lib/astrolabe/page.js
debug: { value: function() { this.context.debugger(); } }, title: { get: function() { return this.context.getTitle(); } },
https://github.com/stuplum/astrolabe/blob/master/lib/astrolabe/base.js
by: { value: protractor.By }, driver: { get: function() { return browser; } }, exception: { value: function(name) { return new exceptions.Exception(name); } }, findElement: { value: function(by) { return this.context.findElement(by); } }, findElements: { value: function(by) { return this.context.findElements(by); } },
I don't see any consistent difference between their usage
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sorry if this is answered somewhere in the docs, but I didn't see it.
What is the difference between the get: and value: ?
I pulled this from your own code
https://github.com/stuplum/astrolabe/blob/master/lib/astrolabe/page.js
https://github.com/stuplum/astrolabe/blob/master/lib/astrolabe/base.js
I don't see any consistent difference between their usage
The text was updated successfully, but these errors were encountered: