skip to Main Content

Ebay API – Serenity BDD Hooks implementation returns error

I am trying to implement some hooks into the serenity BDD implementation with intellij. My hooks file looks like this: package steps; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import io.cucumber.java.Before; import io.cucumber.java.After; public class Environment { private WebDriver driver; @Before public void…

VIEW QUESTION

Page reloads after submitting the 2captcha token – Twitter API

I'm trying to signup on twitter using selenium and using 2captcha API to solve the captcha but for some reason when clicking continue the page refreshes and doesn't proceed captchaInput = twitter_driver.find_element_by_id('g-recaptcha-response') print("Text area set to visible") twitter_driver.execute_script("arguments[0].setAttribute('style','display:visible;');", captchaInput) time.sleep(5)…

VIEW QUESTION

Unable to click button Shopify/Selenium

Unable to click the "Continue to payment button" on shopify site. I have seen several similar post but most of them are for js and do not mention the spinner part of the error. driver.find_element_by_xpath ('//*[@id="continue_button"]/svg') <div class="content-box__row"> <div class="radio-wrapper"…

VIEW QUESTION
Back To Top
Search