fix(basic.gblib): #226 testing.
This commit is contained in:
parent
4c037a7205
commit
97df425566
2 changed files with 1 additions and 2 deletions
|
@ -508,7 +508,6 @@ export class SystemKeywords {
|
|||
|
||||
// Processes FILTER option to ensure parallel SET calls.
|
||||
|
||||
const filter = await DialogKeywords.getOption({ pid, name: 'filter' });
|
||||
let titleAddress;
|
||||
|
||||
if (filter) {
|
||||
|
|
|
@ -53,7 +53,7 @@ import { SystemKeywords } from './SystemKeywords.js';
|
|||
*/
|
||||
export class WebAutomationServices {
|
||||
static isSelector(name: any) {
|
||||
return name.startsWith('.') || name.startsWith('#');
|
||||
return name.startsWith('.') || name.startsWith('#') || name.startsWith('[');
|
||||
}
|
||||
private debugWeb: boolean;
|
||||
private lastDebugWeb: Date;
|
||||
|
|
Loading…
Add table
Reference in a new issue