Skip to content

Commit

Permalink
CONTENT match level
Browse files Browse the repository at this point in the history
  • Loading branch information
angiejones committed Jan 9, 2019
1 parent 5786442 commit 6c7fccf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/test/java/base/BaseTests.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
package base;

import com.applitools.eyes.MatchLevel;
import com.applitools.eyes.selenium.Eyes;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;


import java.io.File;
import java.io.FileInputStream;
import java.util.Properties;

import pages.SearchPage;
import pages.SortableDataTablesPage;

public class BaseTests {

Expand Down Expand Up @@ -49,8 +48,8 @@ private static void initiateEyes(){
}

public void validateWindow(){
eyes.open(driver, "Automation Bookstore",
Thread.currentThread().getStackTrace()[2].getMethodName());
eyes.open(driver, "Automation Bookstore", Thread.currentThread().getStackTrace()[2].getMethodName());
eyes.setMatchLevel(MatchLevel.CONTENT);
eyes.checkWindow();
eyes.close();
}
Expand Down
4 changes: 4 additions & 0 deletions website/css/listview-grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@
bottom: auto;
/* Custom styling. */
background: #990099;
<<<<<<< HEAD
background: rgba(153,0,153,.85);
=======
background: /*rgba(153,0,153,.85);*/ #ff0000;
>>>>>>> CONTENT match level
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
-webkit-border-bottom-left-radius: inherit;
Expand Down

0 comments on commit 6c7fccf

Please sign in to comment.