This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using OpenQA.Selenium; | |
using OpenQA.Selenium.Support.UI; | |
using SeleniumExtras.WaitHelpers; | |
namespace TestContentFromPdf.Extension | |
{ | |
public static class WaitExtension | |
{ | |
private static WebDriverWait wait; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace ConsoleApp1 | |
{ | |
public class Person | |
{ | |
const string peselNumber = "number_pesel"; | |
private int age; |
OlderNewer