Commit c91f162d62e8e019669e067d85e262b2c52e4f38
1 parent
781170bc
PO询价bug修复
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
src/main/java/com/essa/pageObject/inquiryManage/ProductInquiryTaskPage.java
| ... | ... | @@ -97,14 +97,12 @@ public class ProductInquiryTaskPage extends BasePage { |
| 97 | 97 | * @return 询价反馈页面 |
| 98 | 98 | */ |
| 99 | 99 | public ProductInquiryFeedbackPage POtoFeedback() { |
| 100 | + forceWait(1000); | |
| 100 | 101 | dynamicWait(By.xpath("//*[@ng-table='tableParams1']/tbody/tr[1]")); |
| 101 | 102 | click(advancedQuery); |
| 102 | 103 | sendKeys(POQuery, Model.getPoNum()); |
| 103 | 104 | click(search); |
| 104 | 105 | dynamicWait(By.xpath("//*[@id='mask' and @style='display: none;']")); |
| 105 | -// dynamicWait(By.xpath("//*[@ng-table='tableParams1']/tbody/tr[1]")); | |
| 106 | -// mywait(firstRow); | |
| 107 | -// forceWait(2000); | |
| 108 | 106 | click(firstRow); |
| 109 | 107 | click(feedBack); |
| 110 | 108 | return new ProductInquiryFeedbackPage(driver); | ... | ... |