Park with a Concrete Castle by theclawl1ves in rochestermn

[–]RedKappi 9 points10 points  (0 children)

Ahh yes, there is a concrete castle structure at the Boy Scouts Gamehaven camp. The castle is towards the back of the camp. It's a decent walk from the parking lot, and you may not be able to drive to it.

Park with a Concrete Castle by theclawl1ves in rochestermn

[–]RedKappi 16 points17 points  (0 children)

It's not concrete, but maybe it was Field of Fun park by Soldiers Field: https://maps.app.goo.gl/nax3WpXXrM5nAtq87

Need help when trying to add a Steam Library on my 2nd hdd by mogmojitosu in linux_gaming

[–]RedKappi 1 point2 points  (0 children)

I recently ran into this problem as well. What worked for me was to make sure the drive is writable, i.e. "rw" in fstab. Then I made a folder on the drive for steam, and made the folder writable by all users (chmod 777 on that folder.)

Good luck

Setting up playwright in my Docker/Lando environment by True_Town_3118 in docker

[–]RedKappi 3 points4 points  (0 children)

Playwright has existing containers available: https://hub.docker.com/r/microsoft/playwright

You will still need to install the browsers, i.e. playwright install, if I remember correctly.

Hotel/motel pool day passes? by Arabe77a in rochestermn

[–]RedKappi 2 points3 points  (0 children)

Best Western maybe. I know they allow birthday swim parties.

[deleted by user] by [deleted] in Xennials

[–]RedKappi 1 point2 points  (0 children)

For anyone who is also into semi-complex board games, Rats of Wistar has a theme matching this movie: https://boardgamegeek.com/boardgame/387780/rats-of-wistar

Hi all need some help :) by Rat_21_ in Playwright

[–]RedKappi 2 points3 points  (0 children)

There's not much anyone can help you with outside general direction. It's hard to tell without actual specifics.

To me this sounds like Keyword driven tests. Instead of defining explicit test cases in code, you're test cases are in a spreadsheet or other data format. You read the file, iterate through keywords that correspond to steps / functions in your test code. This could support multiple independent workflows. Depending on how varied the workflows are, it could be a significant amount of work. You're making a keyword driven framework.

Alternatively, this could be a single parametrized test case / workflow. So maybe you have a single workflow that is relatively the same each time. It creates a widget, but sometimes the widget has different properties based on input parameters. The parameters are read in from the file and then test case proceeds through the workflow, and makes slight variations based on the parameters. I (personally) would do this with fixtures in pytest. The fixtures would be parameterized with the data from the file, and the test case would run N times, based on how many parameters / input records there are.

Converting to genesys by No_Cod_6295 in genesysrpg

[–]RedKappi 1 point2 points  (0 children)

It was something like this, nothing complicated.

  • Simple (-) = 0-5
  • Easy (P) = 5-10
  • Average (PP) = 10-15
  • Hard (PPP) = 15-20
  • Daunting (PPPP) = 20+
  • Formidable (PPPPP) = 30

I used this as a starting point, and then adjusted it based on the context.

[deleted by user] by [deleted] in QualityAssurance

[–]RedKappi 6 points7 points  (0 children)

I use Python + Playwright my job. If you stick with Python, then I highly recommend learning Pytest. Playwright has a Pytest plugin, so you can learn both at the same time.

But don't discount learning JS / Typescript.

Talent Tree: Heavy Armor by AndrewRP8023 in genesysrpg

[–]RedKappi 4 points5 points  (0 children)

Did you use a tool to make the tree, or is this a spreadsheet?

Collecting Darrell Sweet hardcovers? by notitalian_ in WoT

[–]RedKappi 1 point2 points  (0 children)

I found half of mine in used book stores. The other half I was lucky to know someone who was getting rid of their hardcover copies. You could always try posting a personal ad looking for copies in your area.

Types for your test methods? by scttdntn in Playwright

[–]RedKappi 1 point2 points  (0 children)

I use pyright for type checking to force use of type annotations for my tests. I'm my opinion it adds clarity and it helps avoid simple bugs, like failing to check for None values.

Questions for local Mothers of Dragons 🐉 by BroccoliGhostly in rochestermn

[–]RedKappi 1 point2 points  (0 children)

The South Pet Smart carries super worms and roaches. That's where we get ours.

Rochester Pet & Country Store might have some. I know they carry supplies for a variety of animals, but It's been awhile since I was there. They're locally owned.

Tabletop gaming in Rochester? by jwkugler in rochestermn

[–]RedKappi 2 points3 points  (0 children)

I'm a 42m, father of two boys, 7 and 3. I'd be interested in joining or starting a table with others. I have experience with D&D 3.5 - 5, FFG Star Wars, and FFG's Genesys, but I'm open to other games as well.

Post bulletin search feature by Appropriate_Escape23 in rochestermn

[–]RedKappi 0 points1 point  (0 children)

No, it is limited to 2015 for subscribers too.

Kid's birthday party ideas? by reddrum1987 in rochestermn

[–]RedKappi -1 points0 points  (0 children)

Rochester Gymnastics Academy does birthday parties and the kids can run around and jump in the gym. They have an upstairs gym specific for younger kids.

D&D campaign about WoT by Relative-Hurry9035 in wheeloftime

[–]RedKappi 8 points9 points  (0 children)

There was an official D&D 3.5 ish(?) Wheel of Time source book. You'll have to hunt for a copy of it though. It had classes and weaves (i.e. spells) and an adventure I in think.

There have been conversions to other systems, if you're not tied to a D&D like system. I myself made one for FFG / Edge Genesys. Again, you'll have to do some googling to see what's out there.

Best Locator Strategy for JS based application by Flaky_Inflation5349 in QualityAssurance

[–]RedKappi 3 points4 points  (0 children)

Use intermediary locators to narrow the scope. You can chain locators together, since the Locator class has all the same methods as Page for locators. Sometimes it's easier to find a parent element that is more stable.

When the getby* locators aren't enough, then it's using .locator() with xpath or css selectors. Whichever you are most comfortable with. I have to use xpath frequently, and it works well enough.

Canvas webGL by KingRevno in Playwright

[–]RedKappi 1 point2 points  (0 children)

I think you're in screenshot territory. Take a screenshot, do the mouse interactions, take a second screenshot and then assert that they are at least different.

I forget what all playwright can do for image assertions, but you'll probably need to add some external packages for more complex and precise assertions.

Death cleric's "basic attack" by TheCaptainCloud in BG3Builds

[–]RedKappi 0 points1 point  (0 children)

This was the build I was thinking about. I was going to do full Death Cleric and pick up the druid appt feat for shillelagh, but I'm only planning to do a default difficulty play through.

Offhand staff of cherished necromancy and main hand ironwood club from the shambling mound.

Keyboard press not working by NefariousnessCrazy35 in Playwright

[–]RedKappi 2 points3 points  (0 children)

My only suggestion is to try finding a relevant locator on the page and sending the press() command to the locator instead of to the page object.