Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/xpath/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
具有两个不同类名的嵌套表中的Xpath是什么_Xpath - Fatal编程技术网

具有两个不同类名的嵌套表中的Xpath是什么

具有两个不同类名的嵌套表中的Xpath是什么,xpath,Xpath,这是html: 我需要提取有“奥斯陆加德莫恩”的两个元素 Xpath将如何解释这一点 HTML: <table class="avadaytable" border="1" cellpadding="0" cellspacing="0"> <colgroup class="avadaycolgroup"> <col class="col1"> <col class="col2"> <col clas

这是html:

我需要提取有“奥斯陆加德莫恩”的两个元素 Xpath将如何解释这一点

HTML:

<table class="avadaytable" border="1" cellpadding="0" cellspacing="0">
   <colgroup class="avadaycolgroup">
      <col class="col1">
      <col class="col2">
      <col class="col3">
      <col class="col4">
      <col class="col5">
      <col class="col6">
      <col class="col7">
      <col class="col8">
      <col class="col9">
   </colgroup>
   <thead>
      <tr class="rowspacer">
         <td class="startcell">&nbsp;</td>
         <td class="">&nbsp;</td>
         <td class="">&nbsp;</td>
         <td class="">&nbsp;</td>
         <td class="">&nbsp;</td>
         <td class="">&nbsp;</td>
         <td class="">&nbsp;</td>
         <td class="">&nbsp;</td>
         <td class="endcell">&nbsp;</td>
      </tr>
      <tr>
         <th colspan="3" class="firstrowheadercell">
            <div class="statictooltipclick ToolTipSHCompare pricetable" onclick="
               dataLayer.push(
               {'event': 'trackEvent','eventCategory': 'Select Flight','eventAction': 'Compare fare types','eventLabel': ''}
               )
               ">Compare fare types</div>
         </th>
         <th class="standardfareheadercell tooltipclick endcell" colspan="6"><span class="currencyinfo">All fares per person in GBP</span></th>
      </tr>
      <tr>
         <th class="departureheadercell" rowspan="1">
            <div class="content">Departure</div>
         </th>
         <th class="arrivalheadercell" rowspan="1">
            <div class="content">Arrival</div>
         </th>
         <th class="detailsheadercell" rowspan="1">
            <div class="content">Details</div>
         </th>
         <td onclick="
            dataLayer.push(
            {'event': 'trackEvent','eventCategory': 'Select Flight','eventAction': 'Compare fare types','eventLabel': ''}
            )
            " class="statictooltipclick ToolTipSHCompare select1headercell standardlowfareheadercell " colspan="2">
            <div class="infoicon">LowFare </div>
         </td>
         <td onclick="
            dataLayer.push(
            {'event': 'trackEvent','eventCategory': 'Select Flight','eventAction': 'Compare fare types','eventLabel': ''}
            )
            " class="statictooltipclick ToolTipSHCompare select1headercell standardlowfareheadercell " colspan="2">
            <div class="infoicon">LowFare+ </div>
         </td>
         <td onclick="
            dataLayer.push(
            {'event': 'trackEvent','eventCategory': 'Select Flight','eventAction': 'Compare fare types','eventLabel': ''}
            )
            " class="statictooltipclick ToolTipSHCompare select2headercell standardflexheadercell endcell" colspan="2">
            <div class="infoicon">Flex </div>
         </td>
      </tr>
   </thead>
   <tbody>
      <tr class="oddrow rowinfo1 ">
         <td class="depdest" title="Flight DY1072">
            <div class="content emphasize">13:10</div>
         </td>
         <td class="arrdest">
            <div class="content emphasize">15:40</div>
         </td>
         <td class="duration">
            <div class="content">Direct</div>
         </td>
         <td class="inputselect standardlowfare">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFare0" name="FlightSelectOutbound" class="radio-ajax" value="0|DY1072OSLRIX|1|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare0" value="0|DY1072OSLRIX|1|0">
         </td>
         <td class="fareselect standardlowfare">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">37.70</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare0" value="0|DY1072OSLRIX|1|0">
         </td>
         <td class="inputselect standardlowfareplus">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFarePlus0" name="FlightSelectOutbound" class="radio-ajax" value="0|DY1072OSLRIX|9|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus0" value="0|DY1072OSLRIX|9|0">
         </td>
         <td class="fareselect standardlowfareplus">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">55.70</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus0" value="0|DY1072OSLRIX|9|0">
         </td>
         <td class="inputselect standardflex">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardFlex0" name="FlightSelectOutbound" class="radio-ajax" value="0|DY1072OSLRIX|2|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex0" value="0|DY1072OSLRIX|2|0">
         </td>
         <td class="fareselect standardflex endcell">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">221.50</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex0" value="0|DY1072OSLRIX|2|0">
         </td>
      </tr>
      <tr class="oddrow rowinfo2">
         <td class="depdest" title="Flight DY1072">
            <div class="content">Oslo-Gardermoen</div>
         </td>
         <td class="arrdest">
            <div class="content">Riga</div>
         </td>
         <td class="duration">
            <div class="content">Duration: 1h 30m</div>
         </td>
         <td class="inputselect avafareinfo standardlowfare" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFare0" value="0|DY1072OSLRIX|1|0"></td>
         <td class="inputselect avafareinfo standardlowfareplus" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus0" value="0|DY1072OSLRIX|9|0"></td>
         <td class="inputselect avafareinfo standardflex endcell" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardFlex0" value="0|DY1072OSLRIX|2|0"></td>
      </tr>
      <tr class="oddrow lastrow">
         <td colspan="3" class="routeinfotextcell routeinfoimagecell">
            <div class="content">
               <ul class="flightinfolist">
                  <li class="tooltipclick TooltipBoxWifi" title="Click for more info">WiFi included (*)</li>
                  <li class="plaintext">Operated by Norwegian Air Shuttle</li>
               </ul>
            </div>
         </td>
      </tr>
      <tr class="evenrow rowinfo1 ">
         <td class="depdest" title="Flight DY1074">
            <div class="content emphasize">20:40</div>
         </td>
         <td class="arrdest">
            <div class="content emphasize">23:10</div>
         </td>
         <td class="duration">
            <div class="content">Direct</div>
         </td>
         <td class="inputselect standardlowfare">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFare1" name="FlightSelectOutbound" class="radio-ajax" value="0|DY1074OSLRIX|1|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare1" value="0|DY1074OSLRIX|1|0">
         </td>
         <td class="fareselect standardlowfare">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">33.00</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare1" value="0|DY1074OSLRIX|1|0">
         </td>
         <td class="inputselect standardlowfareplus">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFarePlus1" name="FlightSelectOutbound" class="radio-ajax" value="0|DY1074OSLRIX|9|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus1" value="0|DY1074OSLRIX|9|0">
         </td>
         <td class="fareselect standardlowfareplus">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">51.00</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus1" value="0|DY1074OSLRIX|9|0">
         </td>
         <td class="inputselect standardflex">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardFlex1" name="FlightSelectOutbound" class="radio-ajax" value="0|DY1074OSLRIX|2|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex1" value="0|DY1074OSLRIX|2|0">
         </td>
         <td class="fareselect standardflex endcell">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">221.50</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex1" value="0|DY1074OSLRIX|2|0">
         </td>
      </tr>
      <tr class="evenrow rowinfo2">
         <td class="depdest" title="Flight DY1074">
            <div class="content">Oslo-Gardermoen</div>
         </td>
         <td class="arrdest">
            <div class="content">Riga</div>
         </td>
         <td class="duration">
            <div class="content">Duration: 1h 30m</div>
         </td>
         <td class="inputselect avafareinfo standardlowfare" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFare1" value="0|DY1074OSLRIX|1|0"></td>
         <td class="inputselect avafareinfo standardlowfareplus" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus1" value="0|DY1074OSLRIX|9|0"></td>
         <td class="inputselect avafareinfo standardflex endcell" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardFlex1" value="0|DY1074OSLRIX|2|0"></td>
      </tr>
      <tr class="evenrow lastrow">
         <td colspan="3" class="routeinfotextcell routeinfoimagecell">
            <div class="content">
               <ul class="flightinfolist">
                  <li class="tooltipclick TooltipBoxWifi" title="Click for more info">WiFi included (*)</li>
                  <li class="plaintext">Operated by Norwegian Air International</li>
               </ul>
            </div>
         </td>
      </tr>
      <tr class="oddrow rowinfo1 ">
         <td class="depdest" title="">
            <div class="content emphasize">17:25</div>
         </td>
         <td class="arrdest">
            <div class="content emphasize">21:50</div>
         </td>
         <td class="duration">
            <div class="content">1 stop</div>
         </td>
         <td class="inputselect standardlowfare">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFare2" name="FlightSelectOutbound" class="radio-ajax" value="0|DY948OSLCPHD83320CPHRIX|1|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare2" value="0|DY948OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="fareselect standardlowfare">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">124.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare2" value="0|DY948OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="inputselect standardlowfareplus">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFarePlus2" name="FlightSelectOutbound" class="radio-ajax" value="0|DY948OSLCPHD83320CPHRIX|9|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus2" value="0|DY948OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="fareselect standardlowfareplus">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">142.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus2" value="0|DY948OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="inputselect standardflex">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardFlex2" name="FlightSelectOutbound" class="radio-ajax" value="0|DY948OSLCPHD83320CPHRIX|2|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex2" value="0|DY948OSLCPHD83320CPHRIX|2|0">
         </td>
         <td class="fareselect standardflex endcell">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">360.50</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex2" value="0|DY948OSLCPHD83320CPHRIX|2|0">
         </td>
      </tr>
      <tr class="oddrow rowinfo2">
         <td class="depdest" title="">
            <div class="content">Oslo-Gardermoen</div>
         </td>
         <td class="arrdest">
            <div class="content">Riga</div>
         </td>
         <td class="duration">
            <div class="content">Duration: 3h 25m</div>
         </td>
         <td class="inputselect avafareinfo standardlowfare" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFare2" value="0|DY948OSLCPHD83320CPHRIX|1|0"></td>
         <td class="inputselect avafareinfo standardlowfareplus" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus2" value="0|DY948OSLCPHD83320CPHRIX|9|0"></td>
         <td class="inputselect avafareinfo standardflex endcell" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardFlex2" value="0|DY948OSLCPHD83320CPHRIX|2|0"></td>
      </tr>
      <tr class="oddrow lastrow">
         <td colspan="3" class="routeinfotextcell routeinfoimagecell">
            <div class="content">
               <ul class="flightinfolist">
                  <li class="tooltipclick TooltipBoxWifi" title="Click for more info">WiFi included (*)</li>
                  <li class="tooltipclick TooltipBoxTransit" title="Click for more info">1 stop (55m) in Copenhagen</li>
                  <li class="plaintext">Operated by Norwegian Air Shuttle, Norwegian Air International</li>
               </ul>
            </div>
         </td>
      </tr>
      <tr class="evenrow rowinfo1 ">
         <td class="depdest" title="">
            <div class="content emphasize">15:20</div>
         </td>
         <td class="arrdest">
            <div class="content emphasize">21:50</div>
         </td>
         <td class="duration">
            <div class="content">1 stop</div>
         </td>
         <td class="inputselect standardlowfare">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFare3" name="FlightSelectOutbound" class="radio-ajax" value="0|D83224OSLCPHD83320CPHRIX|1|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare3" value="0|D83224OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="fareselect standardlowfare">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">124.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare3" value="0|D83224OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="inputselect standardlowfareplus">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFarePlus3" name="FlightSelectOutbound" class="radio-ajax" value="0|D83224OSLCPHD83320CPHRIX|9|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus3" value="0|D83224OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="fareselect standardlowfareplus">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">142.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus3" value="0|D83224OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="inputselect standardflex">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardFlex3" name="FlightSelectOutbound" class="radio-ajax" value="0|D83224OSLCPHD83320CPHRIX|2|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex3" value="0|D83224OSLCPHD83320CPHRIX|2|0">
         </td>
         <td class="fareselect standardflex endcell">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">360.50</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex3" value="0|D83224OSLCPHD83320CPHRIX|2|0">
         </td>
      </tr>
      <tr class="evenrow rowinfo2">
         <td class="depdest" title="">
            <div class="content">Oslo-Gardermoen</div>
         </td>
         <td class="arrdest">
            <div class="content">Riga</div>
         </td>
         <td class="duration">
            <div class="content">Duration: 5h 30m</div>
         </td>
         <td class="inputselect avafareinfo standardlowfare" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFare3" value="0|D83224OSLCPHD83320CPHRIX|1|0"></td>
         <td class="inputselect avafareinfo standardlowfareplus" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus3" value="0|D83224OSLCPHD83320CPHRIX|9|0"></td>
         <td class="inputselect avafareinfo standardflex endcell" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardFlex3" value="0|D83224OSLCPHD83320CPHRIX|2|0"></td>
      </tr>
      <tr class="evenrow lastrow">
         <td colspan="3" class="routeinfotextcell routeinfoimagecell">
            <div class="content">
               <ul class="flightinfolist">
                  <li class="tooltipclick TooltipBoxWifi" title="Click for more info">WiFi included (*)</li>
                  <li class="tooltipclick TooltipBoxTransit" title="Click for more info">1 stop (3h 0m) in Copenhagen</li>
                  <li class="plaintext">Operated by Norwegian Air International</li>
               </ul>
            </div>
         </td>
      </tr>
      <tr class="oddrow rowinfo1 ">
         <td class="depdest" title="">
            <div class="content emphasize">14:30</div>
         </td>
         <td class="arrdest">
            <div class="content emphasize">21:50</div>
         </td>
         <td class="duration">
            <div class="content">1 stop</div>
         </td>
         <td class="inputselect standardlowfare">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFare4" name="FlightSelectOutbound" class="radio-ajax" value="0|DY940OSLCPHD83320CPHRIX|1|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare4" value="0|DY940OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="fareselect standardlowfare">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">124.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare4" value="0|DY940OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="inputselect standardlowfareplus">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFarePlus4" name="FlightSelectOutbound" class="radio-ajax" value="0|DY940OSLCPHD83320CPHRIX|9|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus4" value="0|DY940OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="fareselect standardlowfareplus">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">142.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus4" value="0|DY940OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="inputselect standardflex">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardFlex4" name="FlightSelectOutbound" class="radio-ajax" value="0|DY940OSLCPHD83320CPHRIX|2|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex4" value="0|DY940OSLCPHD83320CPHRIX|2|0">
         </td>
         <td class="fareselect standardflex endcell">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">360.50</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex4" value="0|DY940OSLCPHD83320CPHRIX|2|0">
         </td>
      </tr>
      <tr class="oddrow rowinfo2">
         <td class="depdest" title="">
            <div class="content">Oslo-Gardermoen</div>
         </td>
         <td class="arrdest">
            <div class="content">Riga</div>
         </td>
         <td class="duration">
            <div class="content">Duration: 6h 20m</div>
         </td>
         <td class="inputselect avafareinfo standardlowfare" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFare4" value="0|DY940OSLCPHD83320CPHRIX|1|0"></td>
         <td class="inputselect avafareinfo standardlowfareplus" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus4" value="0|DY940OSLCPHD83320CPHRIX|9|0"></td>
         <td class="inputselect avafareinfo standardflex endcell" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardFlex4" value="0|DY940OSLCPHD83320CPHRIX|2|0"></td>
      </tr>
      <tr class="oddrow lastrow">
         <td colspan="3" class="routeinfotextcell routeinfoimagecell">
            <div class="content">
               <ul class="flightinfolist">
                  <li class="tooltipclick TooltipBoxWifi" title="Click for more info">WiFi included (*)</li>
                  <li class="tooltipclick TooltipBoxTransit" title="Click for more info">1 stop (3h 50m) in Copenhagen</li>
                  <li class="plaintext">Operated by Norwegian Air International</li>
               </ul>
            </div>
         </td>
      </tr>
      <tr class="evenrow rowinfo1 ">
         <td class="depdest" title="">
            <div class="content emphasize">22:10</div>
         </td>
         <td class="arrdest">
            <div class="content emphasize">09:20 <span class="offsetdays" title="Next day">+1</span></div>
         </td>
         <td class="duration">
            <div class="content">1 stop</div>
         </td>
         <td class="inputselect standardlowfare">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFare5" name="FlightSelectOutbound" class="radio-ajax" value="0|D83246OSLCPHD83320CPHRIX|1|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare5" value="0|D83246OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="fareselect standardlowfare">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">124.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFare5" value="0|D83246OSLCPHD83320CPHRIX|1|0">
         </td>
         <td class="inputselect standardlowfareplus">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardLowFarePlus5" name="FlightSelectOutbound" class="radio-ajax" value="0|D83246OSLCPHD83320CPHRIX|9|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus5" value="0|D83246OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="fareselect standardlowfareplus">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">142.80</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus5" value="0|D83246OSLCPHD83320CPHRIX|9|0">
         </td>
         <td class="inputselect standardflex">
            <div class="content" title=""><input type="radio" id="FlightSelectOutboundStandardFlex5" name="FlightSelectOutbound" class="radio-ajax" value="0|D83246OSLCPHD83320CPHRIX|2|0"></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex5" value="0|D83246OSLCPHD83320CPHRIX|2|0">
         </td>
         <td class="fareselect standardflex endcell">
            <div class="content" title=""><label class="label seatsokfare" title="GBP">360.50</label></div>
            <input type="hidden" name="hdnFlightSelectOutboundStandardFlex5" value="0|D83246OSLCPHD83320CPHRIX|2|0">
         </td>
      </tr>
      <tr class="evenrow rowinfo2">
         <td class="depdest" title="">
            <div class="content">Oslo-Gardermoen</div>
         </td>
         <td class="arrdest">
            <div class="content">Riga</div>
         </td>
         <td class="duration">
            <div class="content">Duration: 10h 10m</div>
         </td>
         <td class="inputselect avafareinfo standardlowfare" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFare5" value="0|D83246OSLCPHD83320CPHRIX|1|0"></td>
         <td class="inputselect avafareinfo standardlowfareplus" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardLowFarePlus5" value="0|D83246OSLCPHD83320CPHRIX|9|0"></td>
         <td class="inputselect avafareinfo standardflex endcell" rowspan="2" colspan="2">&nbsp;<input type="hidden" name="hdnFlightSelectOutboundStandardFlex5" value="0|D83246OSLCPHD83320CPHRIX|2|0"></td>
      </tr>
      <tr class="evenrow lastrow">
         <td colspan="3" class="routeinfotextcell routeinfoimagecell">
            <div class="content">
               <ul class="flightinfolist">
                  <li class="tooltipclick TooltipBoxWifi" title="Click for more info">WiFi included (*)</li>
                  <li class="tooltipclick TooltipBoxNightstop" title="Click for more info">This route has an overnight stop. Departure Copenhagen 07:00</li>
                  <li class="plaintext">Operated by Norwegian Air International</li>
               </ul>
            </div>
         </td>
      </tr>
   </tbody>
</table>

比较票价类型
每人所有票价(英镑)
离开
进站
细节
廉价的
低票价+
弯曲
13:10
15:40
直接的
37.70
55.70
221.50
奥斯陆加德莫
里加
持续时间:1小时30米
  • 包含WiFi(*)
  • 由挪威航空航天飞机运营
20:40 23:10 直接的 33 51 221.50 奥斯陆加德莫 里加 持续时间:1小时30米
  • 包含WiFi(*)
  • 由挪威国际航空公司运营
17:25 21:50 一站 124.80 142.80 360.50 奥斯陆加德莫 里加 持续时间:3小时25米
  • 包含WiFi(*)
  • 1站哥本哈根(55米)
  • 由挪威航空航天飞机、挪威国际航空公司运营
15:20 21:50 一站 124.80 142.80 360.50 奥斯陆加德莫 里加 持续时间:5小时30米
  • 包含WiFi(*)
  • 1站哥本哈根
  • 由挪威国际航空公司运营
14:30 21:50 一站 124.80 142.80 360.50 奥斯陆加德莫 里加 持续时间:6小时20米
  • 包含WiFi(*)
  • 1站哥本哈根(3小时50米)
  • 由挪威国际航空公司运营
22:10 09:20 +1 一站 124.80
//td[@class='depdest']/div[@class='content']