Skip to content

Commit

Permalink
Updated to Selenium 2.46.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Jun 9, 2015
1 parent dac9fea commit a100646
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@ subprojects {

test {
testLogging {
events "passed", "skipped", "failed"
events "failed"//, "passed", "skipped"
exceptionFormat = 'full'
}
}

integrationTests {
testLogging {
events "passed", "skipped", "failed"
events "failed"//, "passed", "skipped"
exceptionFormat = 'full'
}
beforeTest { desc ->
Expand Down
2 changes: 1 addition & 1 deletion serenity-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ dependencies {
compile "org.hamcrest:hamcrest-library:${hamcrestVersion}"
compile "com.thoughtworks.xstream:xstream:1.4.5"
compile "commons-collections:commons-collections:3.2.1"
compile ("net.sourceforge.htmlunit:htmlunit:2.16") {
compile ("net.sourceforge.htmlunit:htmlunit:2.17") {
exclude group: 'org.apache.commons', module: 'commons-lang3'
exclude group: 'commons-logging', module: 'commons-logging'
exclude group: 'xml-apis', module: 'xml-apis'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public SmartAnnotations(Field field, MobilePlatform platform) {
this.platform = platform;
}

private void assertValidAnnotations() {
protected void assertValidAnnotations() {
FindBys findBys = field.getAnnotation(FindBys.class);
FindBy myFindBy = field.getAnnotation(FindBy.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public SmartAnnotations(Field field) {
this.field = field;
}

private void assertValidAnnotations() {
protected void assertValidAnnotations() {
FindBys findBys = field.getAnnotation(FindBys.class);
FindBy myFindBy = field.getAnnotation(FindBy.class);
if (findBys != null && myFindBy != null) {
Expand Down

0 comments on commit a100646

Please sign in to comment.