Skip to content

Commit

Permalink
removed unneeded console output in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Schäfer committed Jan 24, 2015
1 parent 05b531e commit 61cbad2
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import java.io.IOException;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Arrays;
import java.util.List;

import org.openqa.selenium.By;
Expand Down Expand Up @@ -36,8 +35,6 @@ private List<WebElement> findAttachmentIcon() {

public SELF the_content_of_the_referenced_attachment_is( String content ) throws IOException, URISyntaxException {
String href = findAttachmentIcon().get( 0 ).findElement( By.xpath( ".." ) ).getAttribute( "href" );
System.out.println( "==========" + href );
System.out.println( Arrays.toString( targetReportDir.listFiles() ) );
String foundContent = Files.readFile( new File( new URL( href ).toURI() ) ).trim();
assertThat( content ).isEqualTo( foundContent );
return self();
Expand Down

0 comments on commit 61cbad2

Please sign in to comment.