Untitled
unknown
plain_text
2 years ago
705 B
1
Indexable
driver.findElement(By.xpath("//span[@class = 'price actual-price' and text() > 1500]/../../div/input")).click(); try { Thread.sleep(2000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } driver.findElement(By.xpath("//*[@id=\"add-to-cart-button-74\"]")).click(); driver.findElement(By.xpath("//span[@class = 'cart-label' and text() = 'Shopping cart']")).click(); try { Thread.sleep(2000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } driver.findElement(By.xpath("//input[@name = 'removefromcart']")).click(); driver.findElement(By.xpath("//input[@value = 'Update shopping cart']")).click();
Editor is loading...