使用 Protractor 控制 Radio

HTML 的 <input type="radio"> 是常見的控制項,該如何使用 Protractor 對 radio 寫驗收測試呢 ?

Version


Protractor 5.1.2

Requirement


radio000

畫面上共有 3 個 radio,各為 AWSAzureGCP

下方會顯示目前所選擇的 value。

當選擇為 AWS 時,下方顯示 0

radio001

當選擇為 Azure 時,下方顯示 1

radio002

Acceptance Test (紅燈)


測試案例 :

  1. 應該有 3<label>
  2. 應該有 3<input type="radio">
  3. 當選擇 AWS,下方應該出現 0
  4. 當選擇 Azure,下方應該出現 1
  5. 當選擇 GCP,下方應該出現 2

e2e/app.e2e-spec.ts

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { AppPage } from './app.po';

describe('protractor512-radio App', () => {
let page: AppPage;

beforeEach(() => {
page = new AppPage();
page.navigateTo();
});

it(`should have '3' labels`, () => {
expect(page.getLabelCount()).toBe(3);
});

it(`should have '3' radios`, () => {
expect(page.getRadioCount()).toBe(3);
});

it(`should get '0' when select 'AWS'`, () => {
page.selectCloudByIndex(0);
expect(page.getSelectedCloud()).toBe('0');
expect(page.getSelectedId()).toBe('0');
});

it(`should get '1' when select 'Azure'`, () => {
page.selectCloudByText('Azure');
expect(page.getSelectedCloud()).toBe('1');
expect(page.getSelectedId()).toBe('1');
});

it(`should get '2' when select 'GCP'`, () => {
page.selectCloudByText('GCP');
expect(page.getSelectedCloud()).toBe('2');
expect(page.getSelectedId()).toBe('2');
});
});

11 行

1
2
3
it(`should have '3' labels`, () => {
expect(page.getLabelCount()).toBe(3);
});

測試案例 : 應該有 3<label>

page.getLabelCount() 將由 page object 傳回 <label> 的個數。

15 行

1
2
3
it(`should have '3' radios`, () => {
expect(page.getRadioCount()).toBe(3);
});

測試案例 : 應該有 3<input type="radio">

page.getRadioCount() 將由 page object 傳回 radio 的個數。

19 行

1
2
3
4
5
it(`should get '0' when select 'AWS'`, () => {
page.selectCloudByIndex(0);
expect(page.getSelectedCloud()).toBe('0');
expect(page.getSelectedId()).toBe('0');
});

測試案例 : 當選擇 AWS,下方應該出現 0

要模擬 user 選擇 radio,有兩種方式,一種是使用 index 選擇,一種是使用文字選擇。

page.selectCloudByIndex() 將使用 index 方式選擇 radio。

page.getSelectedCloud() 將傳回 user 所選擇 radio 的 value。

page.getSelectedId() 將傳回下方所顯示的 value。

25 行

1
2
3
4
5
it(`should get '1' when select 'Azure'`, () => {
page.selectCloudByText('Azure');
expect(page.getSelectedCloud()).toBe('1');
expect(page.getSelectedId()).toBe('1');
});

測試案例 : 當選擇 Azure,下方應該出現 1

page.selectCloudByText() 將使用文字方式選擇 radio。

e2e/app.po.ts

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { browser, by, element } from 'protractor';

export class AppPage {
navigateTo() {
return browser.get('/');
}

getLabelCount(): any {
return element.all(by.tagName('label')).count();
}

getRadioCount(): any {
return element.all(by.css('input[type="radio"]')).count();
}

selectCloudByText(cloud: string): AppPage {
element(by.cssContainingText('label', cloud)).click();

return this;
}

selectCloudByIndex(index: number): AppPage {
element.all(by.tagName('label'))
.get(index)
.click();

return this;
}

getSelectedCloud(): any {
return element(by.css('input[name="cloud"]:checked')).getAttribute('value');
}

getSelectedId(): any {
return element(by.css('p')).getText();
}
}

*.e2e-spec.ts 負責描述測試案例,不包含 HTML 與 CSS 部分。

*.po.ts 則負責描述 HTML 與 CSS 部分。

Page object 主要目的在於讓測試與 HTML/CSS 解耦合,不要 designer 若變動了 HTML 或 CSS,則所有驗收測試都要修改,只要修改 page object 即可。

驗收測試應該只根據需求變動而修改,不應該因為 HTML/CSS 變動而修改。

第 8 行

1
2
3
getLabelCount(): any {
return element.all(by.tagName('label')).count();
}

回傳所有 <label> 的個數。

count() 的型別不是 number,而是 wdpromise.Promise<number>,因為型別比較複雜,所以迴船型別使用 any 代替。

12 行

1
2
3
getRadioCount(): any {
return element.all(by.css('input[type="radio"]')).count();
}

使用 CSS selector 方式找到所有 radio。all() 回傳為陣列,加上 count() 可獲得陣列的筆數。

16 行

1
2
3
4
5
6
7
selectCloudByIndex(index: number): AppPage {
element.all(by.tagName('label'))
.get(index)
.click();

return this;
}

使用 index 選擇 radio。

因為 radio 已經被包在 <label> 內,所以 click <label>,就相當於 click radio。

先用 element(by.tagName('label')) 找到所有 <label> 的陣列,再透過 get(index) 選擇 <label>,最後 click()

24 行

1
2
3
4
5
selectCloudByText(cloud: string): AppPage {
element(by.cssContainingText('label', cloud)).click();

return this;
}

使用文字選擇 radio。

因為 radio 已經被包在 <label> 內,所以 click <label>,就相當於 click radio。

因為文字是屬於 <label>,而不是屬於 radio,所以使用 by.cssContainingText('label', cloud) 直接找到符合條件的 <label>,然後 click()

30 行

1
2
3
getSelectedCloud(): any {
return element(by.css('input[name="cloud"]:checked')).getAttribute('value');
}

獲得所選擇 radio 的 value。

Click 時可以針對 <label>,但要獲得所選擇 radio 的 value ,就必須扎實的針對 radio。

若為同一組 radio,其 name 必定相同,所以可以 input[name="cloud"] 作為搜尋條件。

被選擇的 radio,必有 checked attribute ,因此可加上 :checked 為搜尋條件。

最後使用 getAttribute('value') 獲得 radio 的 value

radio003

因為我們還沒實作任何功能,得到預期的驗收測試 紅燈

Acceptance Test (綠燈)


測試案例 :

  1. 應該有 3<label>
  2. 應該有 3<input type="radio">
  3. 當選擇 AWS,下方應該出現 0
  4. 當選擇 Azure,下方應該出現 1
  5. 當選擇 GCP,下方應該出現 2

src/app/app.component.html

1
2
3
4
<label *ngFor="let cloud of clouds" [for]="cloud.name|lowercase">
<input type="radio" name="cloud" [id]="cloud.name|lowercase" [value]="cloud.id" [checked]="cloud.checked" (change)="onChange(myRadio)" #myRadio>{{ cloud.name }}
</label>
<p>{{ selectedId }}</p>
1
<label *ngFor="let cloud of clouds" [for]="cloud.name|lowercase">{{ cloud.name }}</label>

<label><input type="radio"> 會依賴後端的資料顯示,故適合使用 *ngFor 產生。

for 會與 radio 的 id 先對應,使用 lowercase pipe 將 cloud.name 轉成小寫。

<label> 所顯示的值則使用 cloud.name 直接 interpolation binding。

1
<input type="radio" name="cloud" [id]="cloud.name|lowercase" [value]="cloud.id" [checked]="cloud.checked" (change)="onChange(myRadio)" #myRadio>

為了讓 radio 同一組,故 name 都使用 cloud

id 使用 lowercase pipe 將 cloud.name 轉成小寫。

checked 根據 cloud.checked 決定 radio 一開始是否選取。

change event 綁訂到 onChange(),並將 #myRadio 傳入 onChange()

src/app/app.component.ts

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Component } from '@angular/core';
import { Cloud } from './cloud';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
selectedId = '0';
clouds: Cloud[] = [
{id: '0', name: 'AWS', checked: true},
{id: '1', name: 'Azure', checked: false},
{id: '2', name: 'GCP', checked: false}
];

onChange(element: HTMLInputElement) {
this.selectedId = element.value;
}
}

第 10 行

1
selectedId = '0';

selectedId field 預設為 0

11 行

1
2
3
4
5
clouds: Cloud[] = [
{id: '0', name: 'AWS', checked: true},
{id: '1', name: 'Azure', checked: false},
{id: '2', name: 'GCP', checked: false}
];

建立 cloud field 與設定初始陣列。

17 行

1
2
3
onChange(element: HTMLInputElement) {
this.selectedId = element.value;
}

HTMLInputElement.value 值指定到 selectedId field。

radio004

功能都實作出來了,重新跑一次驗收測試確認都為 綠燈

Conclusion


  • 實務上整個 ATDD 循環應該是驗收測試 (紅燈) -> 整合測試 (紅燈) -> 單元測試 (紅燈) -> 單元測試 (綠燈) -> 整合測試 (綠燈) -> 驗收測試 (綠燈),因為本文重點在於 Protract 驗收測試的 radio 寫法,所以省略了整合測試與單元測試部分。
  • 本文特別針對 radio 展示了 selectCloudByIndex()selectCloudByText() 兩種寫法。

Sample Code


完整的範例可以在我的 GitHub 找到。

2017-08-22