arnoudbuzing / webtools

A Wolfram Language package which automates interactions with web browsers
Other
33 stars 6 forks source link

Misspelling in `QueryMethod` and `QueryValue`? #11

Closed wjxway closed 6 years ago

wjxway commented 6 years ago

I thought it should be:

QueryMethod[ wtId[s_String] ] ^:= s;
QueryMethod[ wtName[s_String] ] ^:= s;
QueryValue[ wtId[s_String] ] ^:= s;
QueryValue[ wtName[s_String] ] ^:= s;

instead of:

QueryMethod[ Id[s_String] ] ^:= s;
QueryMethod[ Name[s_String] ] ^:= s;
QueryValue[ Id[s_String] ] ^:= s;
QueryValue[ Name[s_String] ] ^:= s;