Hi

To visit and check all site links I used xpath extractor,  
   //a/@href 
as XPath query.

To avoid visiting some links with words 'logout', 'login', 'javascript', '#'
(I call them stop words) I used  
   //a[not(contains(@href, 'logout')) and not(contains(@href, 'login')) and
not(contains(@href, 'javascript')) and not(contains(@href, '#'))]/@href
as XPath query.

Problem:

What should I do to get all these stop words from a .txt file ? So if I add
some more words to this .txt file, the XPath query use them dynamically ?

Any suggestions will be appreciated!
-- 
View this message in context: 
http://www.nabble.com/xpath-extractor-%27stop-words%27-tp20243654p20243654.html
Sent from the JMeter - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to