Selector Commands

Commands

The table below shows the commands that can be used in Selector. The table contains four columns:

  • Command: List of Commands. Commands and values are always separated with ‘:’ characters.
  • Description: Description of the command.
  • Values: If any values are available, then valid values.
  • Example: Example of the command.
Command Description Values Example
% View all pages. View all pages:
%
level View pages on level X. Positive or 0 integer. All pages on level 2:
level:2
status View pages with different HTTP status codes. ok - All pages with 200 OK (HTTP:200).

nok – All pages that have some problem (HTTP != 200).

redirect – All pages with 301 and 302 redirect.

missing – All missing pages (HTTP:404).

forbidden – All pages with no access (HTTP:403).

Code number: Any HTTP status code number can be used.

All pages that are redirected with HTTP 301 and 302:
status:redirect

All pages that are redirected with HTTP 301:
status:301

pwsc Pages with PWSc value X. Equal, greater than and less than operators are allowed. Positive or 0 integer between 0-100. Pages that PWSc value less than 86:
pwsc:<86

Pages that PWSc value greater than 50:
pwsc:>50

Pages with PWSc value 68:
pwsc:68 OR pwsc:=68

trel Relevancy of title tag. Equalgreater than and less than operators are allowed. Positive or 0 integer between 0-100. Pages that title relevancy is less than 86:
trel:<86

Pages that title relevancy is greater than 68:
trel:>68

Pages that title relevancy is 100:
trel:100 OR trel:=100

drel Relevancy of description meta tag. Equalgreater thanand less than operators are allowed. Positive or 0 integer between 0-100. Pages that description relevancy is less than 86:
drel:<86

Pages that description relevancy is greater than 68:
drel:>68

Pages that description relevancy is 100:
drel:100 OR drel:=100

krel Relevancy of keywords meta tag. Equalgreater than and less than operators are allowed. Positive or 0 integer between 0-100. Pages that keywords relevancy is less than 86:
krel:<86

Pages that keywords relevancy is greater than 68:
krel:>68

Pages that keywords relevancy is 100:
krel:100 OR krel:=100

tlen Length of title tag. Equal, greater than and less than operators are allowed. Positive or 0 integer. Pages that have a title length less than 40 chars:
tlen:<40

Pages that have a title length greater than 65 chars:
tlen:>65

Pages that have a title length 60 chars:
tlen:60 OR tlen:=60

dlen Length of description meta tag. Equal, greater than and less than operators are allowed. Positive or 0 integer. Pages that have a description length less than 80 chars:
dlen:<80

Pages that have a description length greater than 160 chars:
dlen:>160

Pages that have a description length 150 chars:
dlen:150 OR dlen:=150

klen Length of keywords meta tag. Equal, greater than and less than operators are allowed. Positive or 0 integer. Pages that have a keyword length less than 30 chars:
klen:<30

Pages that have a keyword length greater than 300 chars:
klen:>160

Pages that have a keyword length 100 chars:
klen:100 OR klen:=100

seourl Pages with SEO friendly URLs. ok - List of SEO friendly URLs.

nok - List of non-SEO friendly URLs.

Pages with SEO friendly URL:
seourl:ok
alt Pages with images and alt parameters. missing - Pages with images without alt parameter.

empty - Pages that contain images with empty alt parameter.

long - Pages that contain images with long alt parameter.

ok - Pages that contain images with alt parameter.

List of pages that contain images with empty alt parameter:
alt:empty
tcr Pages with different Text/Code Ratio. Equal, greater than and less than operators are allowed. For definition of Text/Code ratio see Definitions Help Page. low - Pages with tcr value less than 0.3.

high - Pages with tcr value greater than 0.3.

Any positive or 0 float is accepted.

Pages with tcr value less than 0.2:
tcr:<0.2

Pages with tcr value greater than 0.1:
tcr:>0.1

Pages with tcr value 0.4:
tcr:0.4 OR tcr:=0.4

file URLs with appropriate file type. data - URLs with HTML content (page).

binary - URLs with binary content.

picture - Images.

unknown - URLs with unknown type.

ignored - Ignored URLs.

all - All page types.

List all linked images:
file:picture
same Pages with the same property. title - Pages with the same title tag.

desc - Pages with the same description meta tag.

content - Pages with the same content (duplicate content).

Pages with the same title tag:
same:title
estatus Error status, defined by the crawler. error - All URLs with errors. List pages with errors:
estatus:error
url Specific URLs. Text. All URLs that contain the text ‘index’:
url:index
title URLs with specific title. Text. All URLs that title tag contain the text ‘index’:
title:index
desc URLs with specific descrtiption. Text. All URLs that description meta tag contain the text ‘index’:
desc:index
kw URLs with specific keywords. Text. All URLs that keywords meta tag contain the text ‘index’:
kw:index

Command Concatenation

Commands can be concatenated using whitespace separators. Example:

  • level:1 pwsc:>85 – View all pages on level 1 which PWSc value is higher than 85.

Keyword Search

Selector allows to search pages with specific keywords. To do that, just write the keyword into the search box. For better searching, the following notations can be used:

  • wyolyzer – View all pages that contain the wyolyzer string in a keyword.
  • “wyolyzer” – View all pages that contain the wyolyzer word in a keyword.
  • [wyolyzer] – View all pages that contain the keyword wyolyzer.
  • -wyolyzer – View all pages that do not contain the wyolyzer string in any keywords.
  • -”wyolyzer” – View all pages that do not contain the wyolyzer word in any keywords.
  • -[wyolyzer] – View all pages that do not contain the keyword wyolyzer.

Mixed Search

Command based search can be extended with keyword based search. The keyword must be separated with a semicolon (;) and must follow the commands. Example:

  • level:1 pwsc:>85;wyolyzer – View all pages on level 1 which PWSc value is higher than 85 and contains at least one keyword that contains the string wyolyzer.