mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
17 lines
458 B
TypeScript
17 lines
458 B
TypeScript
|
|
it('default should focus', function() {
|
|
element(by.css('.e2eDefaultToolbarSearchbar input')).sendKeys("AA");
|
|
});
|
|
|
|
it('primary should focus', function() {
|
|
element(by.css('.e2ePrimaryToolbarSearchbar input')).sendKeys("BB");
|
|
});
|
|
|
|
it('danger should focus', function() {
|
|
element(by.css('.e2eDangerToolbarSearchbar input')).sendKeys("CC");
|
|
});
|
|
|
|
it('light should focus', function() {
|
|
element(by.css('.e2eLightToolbarSearchbar input')).sendKeys("DD");
|
|
});
|