Search results for query: *

  1. P

    Question How to integrate the AB testing methodology into the current automation framework

    @Skydiver - True.. but here problem is I am not aware if they will be using same ids for new ui or not..if they use different IDs then I need to make sure with old and new both the IDs - test should work - so for that any idea which sort of pattern can I use? - I am currently using POM pattern...
  2. P

    Question How to integrate the AB testing methodology into the current automation framework

    We presently use the Automation Framework with MStest and Selenium C# POM framework for the e-commerce domain in our organization. Currently, organizations are moving toward an AB testing strategy for a few pages. Therefore, I am unsure of the testing strategy in existing Automation Framework...
  3. P

    Resolved how do you compare ordered lists and find the difference int values in the list?

    Yes - it won't be as desc or asc but only difference would be both the list are having same value at same index except last index - so I want to find that index values only
  4. P

    Resolved how do you compare ordered lists and find the difference int values in the list?

    Hey @JohnH thank you - but this is giving me error as "No overload method for Zip takes 1 argument"
  5. P

    Resolved how do you compare ordered lists and find the difference int values in the list?

    Good day, everyone! I have two lists (before and after) with me that contain integer values. The only difference between the two lists is that if one of the values in the before list is 1, then one of the values in the after list will be 1 + 1 = 2. Which I need to compare, but I'm having...
  6. P

    How do I scroll to bottom of the page with Javascript but with some delay using selenium?

    Good day, everyone! I have a web page with lazy loading enabled, and I'd like to scroll to the bottom of the page, but with a wait, so that the new components in the page may be seen. At the present, I'm trying JavaScript, but it just scrolls to the bottom of the page, which doesn't reveal any...
  7. P

    Resolved Selenium C# - Sendkeys method not entering ^~ characters

    Hi @Skydiver - the above solution solved my problem :) Now I could enter tilde and caret signs Thank you so much
  8. P

    Resolved Selenium C# - Sendkeys method not entering ^~ characters

    Hello Everyone, I have one text which I want to pass in input box, but it is not entering special characters and adding space instead of that - can someone help me in that? Text which I want to enter in the input box: @"This is a ^~ in C#."; I tried below thing: string demo = @"This is a ^~...
  9. P

    Facing issue "VSTTExecution cannot be found" when running tests through command

    I am not connecting to remote server, I am running in my local machine only where I use MSTestConsoleRunner <add key="dir_MSBuild" value="C:\Program Files (x86)\visualStudio17\MSBuild\15.0\Bin\MSBuild.exe"/> <add key="MSTestConsoleRunnerPath" value="C:\Program Files (x86)\Microsoft...
  10. P

    Facing issue "VSTTExecution cannot be found" when running tests through command

    @Skydiver Can you please help me here - I am not able to understand the cause of this issue :(
  11. P

    Facing issue "VSTTExecution cannot be found" when running tests through command

    Hello, I have .Net Framework 4.8 Project where I have added Asp.Net Core packages for including Extent Reports - But now when I am executing cases through a command from MSBuild.exe and MSTestConsoleRunnerPath(C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\MSTest.exe) then...
  12. P

    Can I refactor my code any more?

    Usually the case happens like second method
  13. P

    Can I refactor my code any more?

    Yes, even I think I have not used properly as I should - I am calling this methods in separate class like below: public void QuantityDiscount_EndToEnd_Scenario() { var param = new WorkflowParameters() { designMethod = DesignMethod.UploadImage...
  14. P

    Can I refactor my code any more?

    I am not able to use select afterwards!!! return SitePaymentRepository.GetSitePaymentInfoBySiteId(testConfiguration,siteId) .First(x => checkoutGroup.Contains(x.PaymentType)) .Select(p => new ClientCheckoutOptions() { paymentMethod =...
  15. P

    Can I refactor my code any more?

    Hello Everyone, I have created one class - and it has 3 methods in it - I tried refactoring code considering all the factors; however I am not sure if there is more room for improvement in my code or not So seek help to review my code and suggest me any means of improvement; so that I can...
  16. P

    Question Can I post question on migration from CCNet to Jenkins related?

    Hello Everyone, I am not sure if I can post the question regarding Jenkins Is it okay to post question on Jenkins?
  17. P

    Resolved How do i refactor the if..else if - multiple conditions

    I'm still confused on language version part (facepalm) Below is my framework project file looks like, sowill it support the c#8.0 features? <PropertyGroup> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>Framework</RootNamespace>...
Back
Top Bottom