зеркало из https://github.com/microsoft/appium.git
Merge pull request #208 from jlipps/master
make xpath contains search case insensitive
This commit is contained in:
Коммит
51706a53c1
|
@ -268,6 +268,9 @@ var mechanic = (function() {
|
|||
if (elKey === null) {
|
||||
return null;
|
||||
}
|
||||
// make this a case insensitive search
|
||||
elKey = elKey.toString().toLowerCase();
|
||||
val = val.toString().toLowerCase();
|
||||
|
||||
if (elKey.indexOf(val) !== -1) {
|
||||
return el;
|
||||
|
|
Загрузка…
Ссылка в новой задаче