Skip to content

Commit

Permalink
fix(basic.gblib): #226 testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Apr 11, 2023
1 parent 4c037a7 commit 97df425
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/basic.gblib/services/SystemKeywords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion packages/basic.gblib/services/WebAutomationServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 97df425

Please sign in to comment.