WatiN or Selenium?

As of Friday, Google has over 50 teams
running over 51K tests per day on
internal Selenium Farm. 96% of these
tests are handled by Selenium RC and
the Farm machines correctly. The other
4% are partly due to RC bugs, partly
to test errors, but isolating the
cause can be difficult. Selenium has
been adopted as the primary technology
for functional testing of web
applications within Google. That’s the
good news.

Alternative for visio server-side automation

Mircosoft recommends against server-side automation of office tools (Considerations for server-side Automation of Office)
However, I see no other options. What I’m trying to do, is convert vsd files to html (image+map for hyperlinks). This is not yet possible in Aspose.Diagram, which was quoted in answers to similar questions here. LibVisio which is/will be used in LibreOffice 3.5 is not finished and also doesn’t support hyperlinks.

Unable to refernce a cell into an excel formula using openpyxl

from openpyxl import Workbook wb = Workbook() ws = wb.create_sheet(“Summary”) ws.cell(5,8).value = f’=PERCENTILE({ws.min_row}:{ws.max_row}, {ws.cell(6,6)}) So i want the formula to be dynamic. dynamic in the sense that the value results from this formula should change when the cell(6,6) value is changed just like it happen in excel but here in this case the cell is … Read more

.doc to pdf using python

I’am tasked with converting tons of .doc files to .pdf. And the only way my supervisor wants me to do this is through MSWord 2010. I know I should be able to automate this with python COM automation. Only problem is I dont know how and where to start. I tried searching for some tutorials but was not able to find any (May be I might have, but I don’t know what I’m looking for).