I am using JMeter and I want to extract from a response the value of a column from a row which contains a certain value :
Concretely I want to get the row which contains 677777 and for that row to get the column dv-col dv-col-type-enum dv-col-task-state which in this specific case is Open.
Tried several regexps but no success yet,so any help or clue is welcome.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body class="bootstrap env-dlt">
<div id="main-container" class="container-fluid">
<div id="main-header" class="header"></div>
<div class="section">
<div class="dv-filters large-content"></div>
<div class="dv-container large-content">
<table class="table table-striped table-bordered table-condensed">
<thead></thead>
<tbody class="taskList">
<tr>..</tr>
<tr>..</tr>
<tr>..</tr>
<tr>
<td class="dv-col dv-col-type-string dv-col-task-panel"></td>
<td class="dv-col dv-col-type-string dv-col-task-phase"></td>
<td class="dv-col dv-col-type-long dv-col-task-proposal_reference">
<a href="/presentation/workflow/tasks/111111/detail.html">
677777
</a>
</td>
<td class="dv-col dv-col-type-long dv-col-task-proposal_acronym"></td>
<td class="dv-col dv-col-type-enum dv-col-task-state">
Open
</td>
<td class="dv-col dv-col-type-long dv-col-task-owner"></td>
<td class="dv-col dv-col-type-date dv-col-task-deadline"></td>
<td class="dv-col dv-col-type-double dv-col-task-score"></td>
<td class="dv-col dv-col-type-action"></td>
</tr>
<tr>..</tr>
<tr>..</tr>
<tr>..</tr>
Xpath might be an alternative ?
Thanks