Skip to content

Commit b46dd3e

Browse files
authored
Cleanup scripts (igniteram#24)
* updated license year * improved project quality and added badges * updated the search page button page object
1 parent 0b21fea commit b46dd3e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ node_modules/
22
TyepScript/
33
reports/
44
*.js
5-
.DS_Store
65
.vscode

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![protractorcucumbertypescript](https://raw.githubusercontent.com/igniteram/protractor-cucumber-typescript/master/images/protractor-typescript-cucumber.png)
22

3-
[![CircleCI](https://circleci.com/gh/igniteram/protractor-cucumber-typescript/tree/master.svg?style=shield)](https://circleci.com/gh/igniteram/protractor-cucumber-typescript/tree/master)
3+
[![CircleCI](https://circleci.com/gh/igniteram/protractor-cucumber-typescript/tree/master.svg?style=shield)](https://circleci.com/gh/igniteram/protractor-cucumber-typescript/tree/master) [![TypeScript](https://badges.frapsoft.com/typescript/code/typescript.svg?v=101)](https://github.com/ellerbrock/typescript-badges/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
44

55
### Protractor-Cucumber-TypeScript Setup Guide
66
This project demonstrates the basic protractor-cucumber-typescript framework project setup.
@@ -140,4 +140,4 @@ For contributors who want to improve this repo by contributing some code, report
140140
MIT License
141141
142142
Copyright (c) 2017 Ram Pasala
143-
```
143+
```

circle.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ dependencies:
2020
background: true
2121
test:
2222
override:
23-
- yarn test
23+
- yarn test
24+

pages/searchPage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ export class SearchPageObject {
66

77
constructor() {
88
this.searchTextBox = $("input[name='q']");
9-
this.searchButton = $("button[name='btnG']");
9+
this.searchButton = $("input[value='Google Search']");
1010
}
1111
}

0 commit comments

Comments
 (0)