diff --git a/src/components/GameCard.js b/src/components/GameCard.js
index b3c5a8cf573caefe7d209df8f30e3cd4697a29e3..18a1e67a7a5287cffa1d189caf2b8d926d171b64 100644
--- a/src/components/GameCard.js
+++ b/src/components/GameCard.js
@@ -54,7 +54,16 @@ export default class GameCard extends React.Component {
         <Link
           to={{ pathname: "/game", search: "?id=" + this.state.gameInfo.id }}
         >
-          <button type="button">Select</button>
+          <button id={`select${this.state.gameInfo.name}`} type="button">
+            Select
+          </button>
+        </Link>
+        <Link
+          to={{ pathname: "/replay", search: "?id=" + this.state.gameInfo.id }}
+        >
+          <button id={`replay${this.state.gameInfo.name}`} type="button">
+            Replay
+          </button>
         </Link>
       </div>
     );