fix(basic.gblib): #226 testing.

This commit is contained in:
rodrigorodriguez 2023-04-11 18:27:30 -03:00
parent 4c037a7205
commit 97df425566
2 changed files with 1 additions and 2 deletions

View file

@ -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) {

View file

@ -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;