We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f2c8b8 commit b247c1eCopy full SHA for b247c1e
.gitignore
@@ -0,0 +1 @@
1
+node_modules/
cypress/page-objects/components/Navbar.js
@@ -0,0 +1,13 @@
+export default class Navbar {
2
+ static clickOnLogo() {
3
+ cy.get('.brand').click()
4
+ }
5
+
6
+ static search(text) {
7
+ cy.get('#searchTerm').type(`${text} {enter}`)
8
9
10
+ static clickSignInButton() {
11
+ cy.get('#signin_button').click()
12
13
+}
0 commit comments