1. Список говнокодов пользователя dmytrocx75

    Всего: 2

  2. Java / Говнокод #23554

    +1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    driver_fire.manage().timeouts().implicitlyWait(4, TimeUnit.SECONDS);
            wait=new WebDriverWait(driver_fire,10);      
            driver_fire.navigate().to("http://www.mysite.com");
    
            LoginForm2 loginForm2 = PageFactory.initElements(driver_fire, LoginForm2.class);
            loginForm2.logIn("login", "password");
    wait.until((WebDriver d)->d.manage().getCookieNamed("user_id")).getValue(); // if we have this cookie, we have a logged in session
    
    // реализация класса формы логина
    public class LoginForm2 {
    
        @FindBy(css="div.log-in#log-in")
        private WebElement loginForm;
    
        @FindBy (css=".login")
        private WebElement invoke_button;
    
        WebDriverWait wait;
        WebDriver driver;
    
        public LoginForm2(WebDriver driver){
           driver.manage().timeouts().implicitlyWait(0,TimeUnit.SECONDS);
            this.driver = driver;
            wait = new WebDriverWait(driver,60);
        }
    
    private boolean checkCaptha() {
        try {
            WebElement captcha = loginForm.findElement(By.cssSelector("#newLoginForm iframe"));
            driver.switchTo().frame(captcha);
    
            try {
    wait.until(ExpectedConditions.attributeToBe(By.id("recaptcha-anchor"),"aria-checked","true"));
                System.out.println("Passed captcha");
                driver.switchTo().defaultContent(); 
                return true;
            } catch (TimeoutException e) {
                System.out.println("Too long to wait for captcha");   return false;
            }
    
        } catch (NoSuchElementException e) {
    System.out.println("No captcha )"); return true;
        }
     }
    
     public void logIn(String email, String password)
     {
         wait.until(ExpectedConditions.visibilityOf(invoke_button)).click();
         wait.until(ExpectedConditions.visibilityOf(loginForm));
         loginForm.findElement(By.name("name")).sendKeys(email);
         loginForm.findElement(By.name("passwd")).sendKeys(password);
        if( checkCaptha()) loginForm.findElement(By.name("login-button")).click();
     }
    }

    Selenium: Логин на сайте с задержкой на прохождение Google reCaptcha. Цель - только получить залогиненную сессию.

    dmytrocx75, 19 Ноября 2017

    Комментарии (0)
  3. Java / Говнокод #19151

    −35

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    System.out.println("How much money do you need to retire?");
            Scanner inp=new Scanner(System.in);
            float finalsm= inp.nextFloat();
            System.out.println("How much will you contribute each year?");
            float contr=inp.nextFloat();
            System.out.println("What is interest rate?");
            float inrate=inp.nextFloat();
            float crrbal=0;int cyears=-1;
    
            continue_accumulate:
            {
                while (crrbal < finalsm)
                {
                    float interest = crrbal * inrate / 100;
                    crrbal += interest;
                    cyears++;
                    if (crrbal >= finalsm) break;
    
                     input_request:do
                    {
                        System.out.println("you need to contribute. Will you? ");
                        String consent = inp.next();
                        switch (consent)
                        {
                            case "yes":
                            case "Yes":
                                System.out.println("Thank you.");
                                break input_request;
                            case "no":
                            case "No":
                                System.out.println("ok, no problem. You've accumulated " + crrbal);
                                break continue_accumulate;
                            default:
                                System.out.println("Say Yes or No");continue input_request;
                        }
                    }
                    while (1==1);
                    crrbal+=contr;
                }
                System.out.println("You will have to deposit for "+cyears+"years.");
            }

    Програмка - учебный пример, которая рассчитывает сколько лет нужно ложить деньги на депозит, перед тем как выйти на пенсию :) Рассчет производится по сложным процентам (в банках так не делают). Взята из книги по JAVA, исправлена и доработана.

    dmytrocx75, 08 Декабря 2015

    Комментарии (7)