Example #1
0
 private void ReadPayload(BinaryStream bs)
 {
     Description = bs.Read.Type <DescriptionSection>();
     Index       = bs.Read.Type <IndexSection>();
     Meta        = bs.Read.Type <MetaSection>();
     Packets     = new List <Packet>();
     while (!bs.EndOfStream)
     {
         Packets.Add(bs.Read.Type <Packet>());
     }
 }
Example #2
0
        public void Description()
        {
            //Starting Extent report
            ReportHelpers.test = ReportHelpers.extent.StartTest("Adding Description to the Profile");

            //Created object to interact with HomePage and SignInPage classes and their methods
            HomePage   HomePageObj   = new HomePage();
            SignInPage SignInPageObj = new SignInPage();

            //Called objects to run methods of these classes
            HomePageObj.Open();
            HomePageObj.OpenLoginForm();
            SignInPageObj.LogInSteps();

            //Created object to interact with DescriptionSection class and its methods
            DescriptionSection DescriptionSectionObj = new DescriptionSection();

            //Called object to run UpdateDescription method
            DescriptionSectionObj.UpdateDescription();
        }
 private async Task AddSahdows()
 {
     InfoSection.AddShadow();
     BuySection.AddShadow();
     DescriptionSection.AddShadow();
 }
Example #4
0
 public ProfilePage(Driver driver) : base(driver)
 {
     DescriptionSection        = new DescriptionSection(driver);
     GeneralInformationSection = new AvailabilitySection(driver);
     MainSection = new MainSection(driver);
 }
 public ProfileDescriptionSD()
 {
     DescriptionSectionObj = new DescriptionSection();
 }