-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Interface for Select component extracted #2104
Conversation
This interface will allow to create custom realisation of like-select components, which actually do not have select tag inside.
could somebody help me to understand what is the problem with tests? |
It's not the tests, you have compilation issues. First you need to add an entry in the BUCK and build.desc in the same folder. Next you should make the methods on the new interface public. |
@lukeis Thank you for your support, I've fixed that issues, but is still fails. Sems like in a py module, but I didn't change py code, could you please take a look once more time? |
@@ -31,6 +31,7 @@ java_library(name = "components", | |||
|
|||
java_library(name = "elements", | |||
srcs = [ | |||
'ISelect.java', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
double quotes required
@@ -59,20 +59,23 @@ public Select(WebElement element) { | |||
* @return Whether this select element support selecting multiple options at the same time? This | |||
* is done by checking the value of the "multiple" attribute. | |||
*/ | |||
@Override |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you revert all the Overrides added? it's not required for implementing interfaces, only overriding methods extended.
@lukeis overrides removed, tests passed |
X
in the preceding checkbox, I verify that I have signed the Contributor License AgreementThis interface will allow to create custom realisation of like-select components, which actually do not have select tag inside.