by Mason Chase | Dec 15, 2019 | Uncategorized
I have installed Dart and Flutter plugin, it doesn’t load flutter properly make a new project Solution was to ensure below plugins were enabled: Android APK Support (1.0)Android Games (1.0)Android NDK Support (1.0)CVS Integration (11)Firebase Testing (1.0)GitHub...
by Mason Chase | Dec 12, 2019 | Uncategorized
Running MongoDB Replica Set in Windows run into below error: System.TimeoutException: ‘A timeout occured after 30000ms selecting a server using CompositeServerSelector{ Selectors = MongoDB.Driver.MongoClient+AreSessionsSupportedServerSelector,...
by Mason Chase | Dec 11, 2019 | Uncategorized
I was trying to select a child element of RootShadow object, so I tried to select it by IJavaScriptExecutor first: IWebElement otpApplicationElement = (IWebElement) ((IJavaScriptExecutor)WebDriver).ExecuteScript(“return...
by Mason Chase | Dec 10, 2019 | Uncategorized
When doing a Single lookup from database getting error. XeroBankAccount bankAccount = xeroBankAccountService.Table.Single(p => p.Guid == guid); Gets below exception line: System.InvalidOperationException: Sequence contains no elements at...
by Mason Chase | Dec 10, 2019 | Uncategorized
To get open TCP ports with process ID, first run command prompt as administrator, then run command: netstat -ano -p tcp|findstr LISTENING Result will be: TCP 0.0.0.0:21 0.0.0.0:0 LISTENING 4748 TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4708 TCP 0.0.0.0:135 0.0.0.0:0...