emaks
emaks
when I try to initialize page elements with **custom ElementLocatorFactory**, like ``` public AbstractPage(final WebDriver driver) { this.driver = driver; PageFactory.initElements(new HtmlElementDecorator(new NotDefaultElementLocatorFactory(this.driver)), this); } ``` in `private T decorateHtmlElement(Class...
Changes from pull request #121 have removed difference between `TypifiedElement.class` and `HtmlElement.class`. Now we can do all actions that provides selenium api using `TypifiedElement.class` while this class has been implemented...
When we use inner classes we get the error during element initialization. please, look through unit test for this situation ``` java public class NestedClassTest { public WebDriver driver =...
I have buildspec.yml ``` version: 0.2 phases: build: commands: - #some commands artifacts: files: '**/*' base-directory: ``` and in Jenkinsfile configuration for run CodeBuild ``` stage('Execute CodeBuild') { steps {...
I use cucumber with gradle and run tests with next configuration in build.gradle ``` dependencies { implementation group: 'io.cucumber', name: 'cucumber-junit-platform-engine', version: '7.14.0' ... } tasks { test { systemProperties(System.getProperties().sort())...
I use allure-rspec 2.17.0 rspec 3.11.0 # STR - configure allure and rspec ``` AllureRspec.configure do |config| config.results_directory = "report/allure-results" config.clean_results_directory = true config.logging_level = Logger::WARN logger = Logger.new($stdout) logger.sev_threshold...